module Treetop::Compiler::Metagrammar::LabeledSequencePrimary1

Public Instance Methods

compile(lexical_address, builder) click to toggle source
# File lib/treetop/compiler/metagrammar.rb, line 1513
def compile(lexical_address, builder)
  sequence_primary.compile(lexical_address, builder)
end
inline_modules() click to toggle source
# File lib/treetop/compiler/metagrammar.rb, line 1517
def inline_modules
  sequence_primary.inline_modules
end
label_name() click to toggle source
# File lib/treetop/compiler/metagrammar.rb, line 1521
def label_name
  if label.name
    label.name
  elsif sequence_primary.instance_of?(Nonterminal)
    sequence_primary.text_value
  else
    nil
  end
end