rubyx/lib/vool/vool_compiler.rb
Torsten Ruger 9ddcb3224c rename
2018-03-15 11:32:32 +05:30

18 lines
391 B
Ruby

require_relative "ruby_compiler"
module Vool
class VoolCompiler
def self.ruby_to_vool( ruby_source )
statements = RubyCompiler.compile( ruby_source )
statements = statements.normalize(nil)
statements.create_objects
statements
end
def self.ruby_to_mom(source)
statements = self.ruby_to_vool(source)
statements.to_mom(nil)
end
end
end