Method: Rouge::Lexers::Groovy.declarations

Defined in:
lib/rouge/lexers/groovy.rb

.declarationsObject



18
19
20
21
22
23
24
# File 'lib/rouge/lexers/groovy.rb', line 18

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