diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2024-05-16 22:11:56 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2024-05-17 10:33:01 +0300 |
commit | 7dd801c580bc27cabe3dd1f2475d90efcf3c3197 (patch) | |
tree | dc0be5404659fc07182761c5a33858bbb67f8d25 /modules/gdscript/gdscript_parser.cpp | |
parent | 5708a3a02e00061e03366f2dabf8942df66fedca (diff) | |
download | redot-engine-7dd801c580bc27cabe3dd1f2475d90efcf3c3197.tar.gz |
GDScript: Fix `STANDALONE_EXPRESSION` warning for `preload()`
Diffstat (limited to 'modules/gdscript/gdscript_parser.cpp')
-rw-r--r-- | modules/gdscript/gdscript_parser.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index 9be9307b8a..76f02e44e9 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -1877,6 +1877,10 @@ GDScriptParser::Node *GDScriptParser::parse_statement() { case Node::CALL: // Fine. break; + case Node::PRELOAD: + // `preload` is a function-like keyword. + push_warning(expression, GDScriptWarning::RETURN_VALUE_DISCARDED, "preload"); + break; case Node::LAMBDA: // Standalone lambdas can't be used, so make this an error. push_error("Standalone lambdas cannot be accessed. Consider assigning it to a variable.", expression); |