rename and a tiny start

This commit is contained in:
Torsten Ruger
2014-06-25 15:20:46 +03:00
parent e41bb8027d
commit fe337fad79
9 changed files with 22 additions and 9 deletions

21
test/virtual/helper.rb Normal file
View File

@ -0,0 +1,21 @@
require_relative '../helper'
require 'parslet/convenience'
module VmHelper
# need a code generator, for arm
def setup
@object_space = Boot::BootSpace.new "Arm"
end
def parse
parser = Parser::Crystal.new
syntax = parser.parse_with_debug(@string_input)
parts = Parser::Transform.new.apply(syntax)
parts.each_with_index do |part,index|
expr = part.compile( @object_space.context )
end
end
end