Fix $a/b being parsed as division
This commit is contained in:
parent
ccb17c2b27
commit
a5fb82c28c
1 changed files with 2 additions and 1 deletions
|
@ -314,9 +314,10 @@ GDParser::Node *GDParser::_parse_expression(Node *p_parent, bool p_static, bool
|
|||
path += String(tokenizer->get_token_literal());
|
||||
tokenizer->advance();
|
||||
need_identifier = false;
|
||||
} else {
|
||||
done = true;
|
||||
}
|
||||
|
||||
done = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue