class Treetop::Compiler::GrammarCompiler

def compile(source_path, target_path = source_path.gsub(/\.(treetop|tt)\Z/, '.rb'))

def compile(source_path, target_path = source_path.gsub(/\.(treetop|tt)\Z/, '.rb'))
  File.open(target_path, 'w') do |target_file|
    ruby = ruby_source(source_path)
    if ruby =~ /\A#.*\n/
      ruby.sub!(/\n/, "\n"+AUTOGENERATED+"\n\n")
    else
      ruby = AUTOGENERATED+"\n\n"+ruby
    end
    target_file.write(ruby)
  end
end

def ruby_source(source_path)

compile a treetop file into ruby
def ruby_source(source_path)
  ruby_source_from_string(File.read(source_path))
end

def ruby_source_from_string(s)

compile a string containing treetop source into ruby
def ruby_source_from_string(s)
  parser = MetagrammarParser.new
  result = parser.parse(s)
  unless result
    raise RuntimeError.new(parser.failure_reason)
  end
  result.compile
end