Class: Rouge::RegexLexer::State

Inherits:
Object
  • Object
show all
Defined in:
lib/rouge/regex_lexer.rb

Overview

a State is a named set of rules that can be tested for or mixed in.

See Also:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, rules) ⇒ State

Returns a new instance of State.



34
35
36
37
# File 'lib/rouge/regex_lexer.rb', line 34

def initialize(name, rules)
  @name = name
  @rules = rules
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



33
34
35
# File 'lib/rouge/regex_lexer.rb', line 33

def name
  @name
end

#rulesObject (readonly)

Returns the value of attribute rules.



33
34
35
# File 'lib/rouge/regex_lexer.rb', line 33

def rules
  @rules
end

Instance Method Details

#inspectObject



39
40
41
# File 'lib/rouge/regex_lexer.rb', line 39

def inspect
  "#<#{self.class.name} #{@name.inspect}>"
end