class Treetop::Compiler::Grammar
Public Instance Methods
Source
# File lib/treetop/compiler/node_classes/grammar.rb, line 4 def compile builder = RubyBuilder.new builder.module_declaration "#{grammar_name.text_value}" do builder.in(indent_level) # account for initial indentation of grammar declaration builder << "include Treetop::Runtime" builder.newline declaration_sequence.compile(builder) builder.newline builder.class_declaration "Parser < Treetop::Runtime::CompiledParser" do builder << "include #{grammar_name.text_value}" end end builder.newline builder << "#{parser_name} = #{grammar_name.text_value}::Parser" end
Source
# File lib/treetop/compiler/node_classes/grammar.rb, line 21 def indent_level input.column_of(interval.begin) - 1 end
Source
# File lib/treetop/compiler/node_classes/grammar.rb, line 25 def parser_name grammar_name.text_value + 'Parser' end