Module: Treetop::Compiler::Metagrammar::Sequence2
- Defined in:
- lib/treetop/compiler/metagrammar.rb
Instance Method Summary collapse
Instance Method Details
#inline_module_name ⇒ Object
844 845 846 |
# File 'lib/treetop/compiler/metagrammar.rb', line 844 def inline_module_name node_class_declarations.inline_module_name end |
#inline_modules ⇒ Object
838 839 840 841 842 |
# File 'lib/treetop/compiler/metagrammar.rb', line 838 def inline_modules (sequence_elements.map {|elt| elt.inline_modules}).flatten + [sequence_element_accessor_module] + node_class_declarations.inline_modules end |
#sequence_elements ⇒ Object
830 831 832 |
# File 'lib/treetop/compiler/metagrammar.rb', line 830 def sequence_elements [head] + tail end |
#tail ⇒ Object
834 835 836 |
# File 'lib/treetop/compiler/metagrammar.rb', line 834 def tail super.elements.map {|elt| elt.labeled_sequence_primary } end |