update reader

This commit is contained in:
Torsten Ruger
2014-06-26 17:48:33 +03:00
parent 9d0d5aa431
commit 33c62a7db1
4 changed files with 9 additions and 7 deletions

View File

@ -0,0 +1,20 @@
require_relative '../helper'
require 'parslet/convenience'
module VirtualHelper
# need a code generator, for arm
def setup
# @object_space = Boot::BootSpace.new "Arm"
end
def check
parser = Parser::Crystal.new
syntax = parser.parse_with_debug(@string_input)
parts = Parser::Transform.new.apply(syntax)
machine = Virtual::Machine.new
puts parts.class.inspect
parts.compile(machine.bindings)
end
end