Browse Source

Merge pull request #62705 from cdemirer/expression-built-in-function-identifier

Rémi Verschelde 3 years ago
parent
commit
b4644e2835
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/math/expression.cpp

+ 1 - 1
core/math/expression.cpp

@@ -891,7 +891,7 @@ Expression::ENode *Expression::_parse_expression() {
 				case TK_PERIOD: {
 					//named indexing or function call
 					_get_token(tk);
-					if (tk.type != TK_IDENTIFIER) {
+					if (tk.type != TK_IDENTIFIER && tk.type != TK_BUILTIN_FUNC) {
 						_set_error("Expected identifier after '.'");
 						return nullptr;
 					}