class Rouge::Lexers::RML

Public Class Methods

arithmetic_keywords() click to toggle source
# File lib/rouge/lexers/rml.rb, line 17
def self.arithmetic_keywords
  @arithmetic_keywords ||= Set.new %w(
    abs sin cos tan min max
  )
end
keywords() click to toggle source
# File lib/rouge/lexers/rml.rb, line 10
def self.keywords
  @keywords ||= Set.new %w(
    matches not with empty
    all if else true false
  )
end