We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for
Arch Linux
Note how array on Line 9 and Line 12 are highlighted differently:
array
It seems that the highlighter thinks everything after in is still part of a type.
in
extends Node2D var sprite: Sprite2D func _ready() -> void: var array := [1, 2, 3] for e: int in array: print(e) for e in array: print(e) for e: int in sprite.vframes: print(e) for e in sprite.vframes: print(e)
Paste the code in the built-in script editor.
N/A
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Tested versions
System information
Arch Linux
Issue description
Note how
array
on Line 9 and Line 12 are highlighted differently:It seems that the highlighter thinks everything after
in
is still part of a type.Code in the Screenshot
Steps to reproduce
Paste the code in the built-in script editor.
Minimal reproduction project (MRP)
N/A
The text was updated successfully, but these errors were encountered: