# File lib/rouge/lexers/groovy.rb, line 34 def self.constants @constants ||= Set.new %w(true false null) end
# File lib/rouge/lexers/groovy.rb, line 20 def self.declarations @declarations ||= Set.new %w( abstract const enum extends final implements native private protected public static strictfp super synchronized throws transient volatile ) end
# File lib/rouge/lexers/groovy.rb, line 13 def self.keywords @keywords ||= Set.new %w( assert break case catch continue default do else finally for if goto instanceof new return switch this throw try while in as ) end
# File lib/rouge/lexers/groovy.rb, line 28 def self.types @types ||= Set.new %w( def boolean byte char double float int long short void ) end