Class: CodeTools::Compiler::FileParser

Inherits:
Parser show all
Defined in:
lib/rubinius/code/compiler/stages.rb

Overview

source file -> AST

Instance Attribute Summary

Attributes inherited from Parser

#transforms

Attributes inherited from Stage

#next_stage, #printer

Instance Method Summary collapse

Methods inherited from Parser

#add_magic_comment, #create, #default_transforms, #enable_category, #enable_transform, #initialize, #print, #root, #run

Methods inherited from Stage

#create_next_stage, #initialize, #insert, next_stage, next_stage_class, #processor, #run_next, stage, stage_name

Constructor Details

This class inherits a constructor from CodeTools::Compiler::Parser

Instance Method Details

#input(file, line = 1) ⇒ Object



219
220
221
222
# File 'lib/rubinius/code/compiler/stages.rb', line 219

def input(file, line=1)
  @file = file
  @line = line
end

#parseObject



224
225
226
# File 'lib/rubinius/code/compiler/stages.rb', line 224

def parse
  create.parse_file
end