diff options
| author | Thakee Nathees <thakeenathees@gmail.com> | 2020-09-06 13:26:52 +0530 |
|---|---|---|
| committer | Thakee Nathees <thakeenathees@gmail.com> | 2020-09-06 13:26:52 +0530 |
| commit | 89489a3cac80f53792c2e1b3d8cd808eaea96f62 (patch) | |
| tree | f23974047a245c9be6b51f7954814e00621b06a8 /modules/gdscript/gdscript_analyzer.h | |
| parent | 358e209fa049887fd4212c52c9faba0ca9d6e111 (diff) | |
| download | redot-engine-89489a3cac80f53792c2e1b3d8cd808eaea96f62.tar.gz | |
GDScript: parameter infer type bug fix
Fix: #41772
Diffstat (limited to 'modules/gdscript/gdscript_analyzer.h')
| -rw-r--r-- | modules/gdscript/gdscript_analyzer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_analyzer.h b/modules/gdscript/gdscript_analyzer.h index 4e06e0a530..c3911cce76 100644 --- a/modules/gdscript/gdscript_analyzer.h +++ b/modules/gdscript/gdscript_analyzer.h @@ -67,7 +67,7 @@ class GDScriptAnalyzer { void resolve_match(GDScriptParser::MatchNode *p_match); void resolve_match_branch(GDScriptParser::MatchBranchNode *p_match_branch, GDScriptParser::ExpressionNode *p_match_test); void resolve_match_pattern(GDScriptParser::PatternNode *p_match_pattern, GDScriptParser::ExpressionNode *p_match_test); - void resolve_pararameter(GDScriptParser::ParameterNode *p_parameter); + void resolve_parameter(GDScriptParser::ParameterNode *p_parameter); void resolve_return(GDScriptParser::ReturnNode *p_return); // Reduction functions. |
