1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

GDScript: Fix setting type of operator return value

Also write type adjust when needed for binary operators.
This commit is contained in:
George Marques
2021-06-17 20:00:28 -03:00
parent 2c81e5fa0e
commit b5f1e88b2e
2 changed files with 9 additions and 0 deletions

View File

@@ -3446,6 +3446,7 @@ GDScriptParser::DataType GDScriptAnalyzer::get_operation_type(Variant::Operator
}
r_valid = true;
result.type_source = GDScriptParser::DataType::ANNOTATED_INFERRED;
result.kind = GDScriptParser::DataType::BUILTIN;
result.builtin_type = Variant::get_operator_return_type(p_operation, a_type, b_type);