Class: Dhaka::LexerSupport::OrNode

Inherits:
ASTNode
  • Object
show all
Defined in:
lib/dhaka/lexer/regex_grammar.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from ASTNode

#accepting, #checkpoint

Constructor Details

#initialize(*children) ⇒ OrNode

Returns a new instance of OrNode.



162
163
164
# File 'lib/dhaka/lexer/regex_grammar.rb', line 162

def initialize(*children)
  @children = children
end

Instance Attribute Details

#childrenObject (readonly)

Returns the value of attribute children.



161
162
163
# File 'lib/dhaka/lexer/regex_grammar.rb', line 161

def children
  @children
end

Instance Method Details

#calculate_follow_setsObject



197
198
199
200
201
# File 'lib/dhaka/lexer/regex_grammar.rb', line 197

def calculate_follow_sets
  children.each do |child|
    child.calculate_follow_sets
  end
end

#firstObject



173
174
175
176
177
178
179
# File 'lib/dhaka/lexer/regex_grammar.rb', line 173

def first
  result = Set.new
  children.each do |child|
    result.merge child.first
  end
  result
end

#labelObject



165
166
167
# File 'lib/dhaka/lexer/regex_grammar.rb', line 165

def label
  "|"
end

#lastObject



181
182
183
184
185
186
187
# File 'lib/dhaka/lexer/regex_grammar.rb', line 181

def last
  result = Set.new
  children.each do |child|
    result.merge child.last
  end
  result
end

#nullableObject



169
170
171
# File 'lib/dhaka/lexer/regex_grammar.rb', line 169

def nullable
  children.any? {|child| child.nullable}
end

#to_dot(graph) ⇒ Object



189
190
191
192
193
194
195
# File 'lib/dhaka/lexer/regex_grammar.rb', line 189

def to_dot(graph)
  graph.node(self, :label => label)
  children.each do |child|
    graph.edge(self, child)
    child.to_dot(graph)
  end
end