Skip to content

Commit

Permalink
Merge pull request godotengine#96243 from AinaVT/fix-missing-parser-f…
Browse files Browse the repository at this point in the history
…rom-completion-context

Fix missing `GDScriptParser` reference on completion context
  • Loading branch information
akien-mga committed Aug 28, 2024
2 parents 40b378e + 930742f commit ce8a837
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/gdscript/gdscript_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ void GDScriptParser::override_completion_context(const Node *p_for_node, Complet
context.current_line = tokenizer->get_cursor_line();
context.current_argument = p_argument;
context.node = p_node;
context.parser = this;
completion_context = context;
}

Expand Down

0 comments on commit ce8a837

Please sign in to comment.