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

Fix NameError on @ + UPPERCASE token in Objective-C #1406

Merged
merged 2 commits into from Jan 25, 2020
Merged
Show file tree
Hide file tree
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/rouge/lexers/objective_c/common.rb
Expand Up @@ -44,7 +44,7 @@ def self.extended(base)
elsif base.at_builtins.include? m[1]
token base::Name::Builtin
else
token Error
token base::Error
end
end

Expand Down
3 changes: 3 additions & 0 deletions spec/visual/samples/objective_c
Expand Up @@ -173,3 +173,6 @@ ViewController *controller = [[ViewController alloc] initWithDocument:document c
builder.thumbnailBarMode = ThumbnailBarModeScrollable;
builder.pageLabelEnabled = NO;
}]];

// Invalid Objective-C keyword
@FOO