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
Godot version:
fb2465b
Issue description:
const a = {} func _ready() -> void: a["test"] = 1
This results in Cannot get index "test" from "{}". (parse error)
Cannot get index "test" from "{}".
If I'm not supposed to modify const Dictionary, the error should clearly say so.
The text was updated successfully, but these errors were encountered:
there was already an issue for this: #44241
Sorry, something went wrong.
It's not the same issue. In my case it works when I do var a = {}
var a = {}
This should be clear after #71051.
No branches or pull requests
Godot version:
fb2465b
Issue description:
This results in
Cannot get index "test" from "{}".
(parse error)If I'm not supposed to modify const Dictionary, the error should clearly say so.
The text was updated successfully, but these errors were encountered: