Fix $a/b being parsed as division

This commit is contained in:
Bojidar Marinov 2017-07-26 18:51:03 +03:00
parent ccb17c2b27
commit a5fb82c28c
No known key found for this signature in database
GPG key ID: 4D546A8F1E091856

View file

@ -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;
}
}