Class: Dhaka::LexerSupport::LookaheadNode

Inherits:
CatNode show all
Defined in:
lib/dhaka/lexer/regex_grammar.rb

Instance Attribute Summary

Attributes inherited from BinaryNode

#left, #right

Instance Method Summary collapse

Methods inherited from CatNode

#first, #last, #nullable

Methods inherited from BinaryNode

#initialize, #to_dot

Methods inherited from ASTNode

#accepting, #checkpoint

Constructor Details

This class inherits a constructor from Dhaka::LexerSupport::BinaryNode

Instance Method Details

#calculate_follow_setsObject



234
235
236
237
238
239
# File 'lib/dhaka/lexer/regex_grammar.rb', line 234

def calculate_follow_sets
  super
  left.last.each do |leaf_node|
    leaf_node.follow_set.merge(Set.new([CheckpointNode.new]))
  end
end

#labelObject



230
231
232
# File 'lib/dhaka/lexer/regex_grammar.rb', line 230

def label
  "/"
end