move compiler to bosl and get first test working (adjusting syntax as i go)

This commit is contained in:
Torsten Ruger
2015-09-19 16:28:41 +03:00
parent ab8bb55789
commit 2061097e88
18 changed files with 107 additions and 111 deletions

View File

@ -135,7 +135,7 @@ module Virtual
syntax = @parser.parse_with_debug(bytes)
parts = Parser::Transform.new.apply(syntax)
#puts parts.to_s
Compiler.compile( parts , @space.get_main )
Bosl::Compiler.compile( parts , @space.get_main )
end
private