summaryrefslogtreecommitdiff
path: root/modules/gdscript
diff options
context:
space:
mode:
authorlupoDharkael <izhe@hotmail.es>2019-11-15 01:29:18 +0100
committerlupoDharkael <izhe@hotmail.es>2019-11-15 01:29:18 +0100
commit92549612973a4c474fcb8fbb778e6a4aef48a60f (patch)
treed68a454e50556f49c293b91f49457ac3ff716458 /modules/gdscript
parentd1f8fd6384ae8d2caae368d79d1db23654868b98 (diff)
Parser: Check all the arguments of the ternary operator
Diffstat (limited to 'modules/gdscript')
-rw-r--r--modules/gdscript/gdscript_parser.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp
index 74b9440b3a..6ef3ab67ae 100644
--- a/modules/gdscript/gdscript_parser.cpp
+++ b/modules/gdscript/gdscript_parser.cpp
@@ -6466,6 +6466,8 @@ GDScriptParser::DataType GDScriptParser::_reduce_node_type(Node *p_node) {
DataType true_type = _reduce_node_type(op->arguments[1]);
DataType false_type = _reduce_node_type(op->arguments[2]);
+ // Check arguments[0] errors.
+ _reduce_node_type(op->arguments[0]);
// If types are equal, then the expression is of the same type
// If they are compatible, return the broader type