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
属性名に予約語を使用した以下のようなコードが通ってしまうが、
#[class] let a = 42
このコードを見ると意図としては通らないのが正しそう。
aiscript/src/parser/plugins/validate-keyword.ts
Lines 88 to 96 in e7e2651
visitNode
Definition
attr
aiscript/src/parser/visit.ts
Lines 8 to 11 in e7e2651
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
属性名に予約語を使用した以下のようなコードが通ってしまうが、
このコードを見ると意図としては通らないのが正しそう。
aiscript/src/parser/plugins/validate-keyword.ts
Lines 88 to 96 in e7e2651
原因は
visitNode
がDefinition
のattr
メンバを見ていないことだと考えられる。aiscript/src/parser/visit.ts
Lines 8 to 11 in e7e2651
The text was updated successfully, but these errors were encountered: