class Rouge::Lexers::Coffeescript

def self.keywords

def self.keywords
  @keywords ||= Set.new %w(
    for by while until loop break continue return
    switch when then if else do yield throw try catch finally await
    new delete typeof instanceof super extends this class
    import export debugger
  )
end