class Rouge::Lexers::Lutin

Public Class Methods

keywords() click to toggle source
# File lib/rouge/lexers/lutin.rb, line 15
def self.keywords
  @keywords ||= Set.new %w(
    let in node extern system returns weak strong assert raise try catch
    trap do exist erun run type ref exception include false true 
  )
end
primitives() click to toggle source
# File lib/rouge/lexers/lutin.rb, line 27
def self.primitives
  @primitives ||= Set.new %w(int real bool trace loop fby)
end
word_operators() click to toggle source
# File lib/rouge/lexers/lutin.rb, line 22
def self.word_operators
  @word_operators ||= Set.new %w(
     div and xor mod or not nor if then else pre) 
end