Skip to content
New issue

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

vertical bar is not a valid character in an lvar name #794

Merged
merged 1 commit into from Apr 20, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/parser/builders/default.rb
Expand Up @@ -1724,7 +1724,7 @@ def arg_name_collides?(this_name, that_name)
end

def check_lvar_name(name, loc)
if name =~ /\A[[[:lower:]]|_][[[:alnum:]]_]*\z/
if name =~ /\A[[[:lower:]]_][[[:alnum:]]_]*\z/
# OK
else
diagnostic :error, :lvar_name, { name: name }, loc
Expand Down