Skip to content

Commit

Permalink
Merge pull request #76090 from adamscott/fix-typo-lsp-parse-func-para…
Browse files Browse the repository at this point in the history
…meters

[LSP] Fix typo in parse function parameters
  • Loading branch information
YuriSizov committed Apr 18, 2023
2 parents b65d359 + 879791e commit e31d391
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -337,7 +337,7 @@ void ExtendGDScriptParser::parse_function_symbol(const GDScriptParser::FunctionN
symbol.kind = lsp::SymbolKind::Variable;
symbol.name = parameter->identifier->name;
symbol.range.start.line = LINE_NUMBER_TO_INDEX(parameter->start_line);
symbol.range.start.character = LINE_NUMBER_TO_INDEX(parameter->start_line);
symbol.range.start.character = LINE_NUMBER_TO_INDEX(parameter->start_column);
symbol.range.end.line = LINE_NUMBER_TO_INDEX(parameter->end_line);
symbol.range.end.character = LINE_NUMBER_TO_INDEX(parameter->end_column);
symbol.uri = uri;
Expand Down

0 comments on commit e31d391

Please sign in to comment.