diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-06 15:22:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-06 15:22:44 +0200 |
commit | 859322343ca02d1fac9c2f29b58fcfa8d3b27b0c (patch) | |
tree | 386469d4b573e4e03058da795410e3b4aaacf89f /modules/gdscript/gdscript_analyzer.h | |
parent | ceed52493696dd7bc7559040ecb98b225fc0754c (diff) | |
parent | 89489a3cac80f53792c2e1b3d8cd808eaea96f62 (diff) |
Merge pull request #41803 from ThakeeNathees/parameter-type-infer-bug-fix
GDScript: parameter infer type bug fix
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. |