You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 19:11:41 +00:00
GDScript: Add support for variadic functions
This commit is contained in:
@@ -492,7 +492,7 @@ Dictionary GDScriptSyntaxHighlighter::_get_line_syntax_highlighting_impl(int p_l
|
||||
k--;
|
||||
}
|
||||
|
||||
if (str[k] == '.') {
|
||||
if (str[k] == '.' && (k < 1 || str[k - 1] != '.')) {
|
||||
in_member_variable = true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user