2017-04-10 15:12:15 +02:00
|
|
|
|
2018-06-29 22:04:50 +02:00
|
|
|
module ScopeHelper
|
2017-04-10 15:12:15 +02:00
|
|
|
|
2019-09-12 21:27:10 +02:00
|
|
|
def in_Test(statements)
|
|
|
|
"class Test ; #{statements} ; end"
|
|
|
|
end
|
|
|
|
|
|
|
|
def as_test_main(statements)
|
|
|
|
in_Test("def main(arg) ; #{statements}; end")
|
|
|
|
end
|
|
|
|
|
2017-04-10 15:12:15 +02:00
|
|
|
def in_Space(statements)
|
|
|
|
"class Space ; #{statements} ; end"
|
|
|
|
end
|
|
|
|
|
|
|
|
def as_main(statements)
|
2018-07-04 07:28:29 +02:00
|
|
|
in_Space("def main(arg) ; #{statements}; end")
|
2017-04-10 15:12:15 +02:00
|
|
|
end
|
2017-04-13 13:14:43 +02:00
|
|
|
|
2019-09-12 12:10:31 +02:00
|
|
|
def as_main_block( block_input = "return 5", method_input = "main_local = 5")
|
|
|
|
as_main("#{method_input} ; self.main{|val| #{block_input}}")
|
2019-08-13 18:32:17 +02:00
|
|
|
end
|
|
|
|
|
2017-09-07 07:16:37 +02:00
|
|
|
end
|
2019-08-06 17:33:27 +02:00
|
|
|
module VoolCompile
|
|
|
|
include ScopeHelper
|
2019-08-07 11:06:06 +02:00
|
|
|
include Mom
|
2019-09-12 21:27:10 +02:00
|
|
|
include Preloader
|
2019-08-06 17:33:27 +02:00
|
|
|
|
2019-09-12 21:27:10 +02:00
|
|
|
def compile_main( input , preload = nil)
|
|
|
|
input = get_preload(preload) + as_main( input )
|
2019-08-07 11:06:06 +02:00
|
|
|
collection = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_mom(input)
|
2019-08-13 19:35:27 +02:00
|
|
|
assert collection.is_a?(Mom::MomCollection) , collection.class.name
|
2019-09-12 21:27:10 +02:00
|
|
|
compiler = collection.compilers.find{|comp| comp.callable.name == :main}
|
2019-08-07 11:06:06 +02:00
|
|
|
assert compiler.is_a?(Mom::MethodCompiler)
|
2019-08-13 18:32:17 +02:00
|
|
|
assert_equal Mom::MethodCompiler , compiler.class
|
2019-08-07 11:06:06 +02:00
|
|
|
compiler
|
2019-08-06 17:33:27 +02:00
|
|
|
end
|
2019-09-12 21:27:10 +02:00
|
|
|
def compile_main_block( block_input , method_input = "main_local = 5" , preload = nil)
|
|
|
|
source = get_preload(preload) + as_main("#{method_input} ; self.main{|val| #{block_input}}")
|
2019-08-13 19:35:27 +02:00
|
|
|
mom_col = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_mom( source )
|
|
|
|
compiler = mom_col.method_compilers.find{|c| c.get_method.name.to_s.start_with?("main") }
|
|
|
|
block = compiler.block_compilers.first
|
|
|
|
assert block
|
|
|
|
block.mom_instructions.next
|
2019-08-07 14:08:45 +02:00
|
|
|
end
|
2019-08-07 11:06:06 +02:00
|
|
|
def check_array( should , is )
|
|
|
|
index = 0
|
|
|
|
test = is
|
|
|
|
while(test)
|
|
|
|
# if we assert here, we get output pointing here. Without stack, not useful
|
|
|
|
raise "Wrong class for #{index+1}, #{dump(is)}" if should[index] != test.class
|
|
|
|
index += 1
|
|
|
|
test = test.next
|
|
|
|
end
|
|
|
|
assert 1 #just to get an assertion in the output.
|
|
|
|
end
|
|
|
|
def dump(is)
|
|
|
|
res =[]
|
|
|
|
while(is)
|
|
|
|
res << is.class.name.split("::").last
|
|
|
|
is = is.next
|
|
|
|
end
|
|
|
|
ret = ""
|
|
|
|
res.to_s.split(",").each_slice(5).each do |line|
|
|
|
|
ret += " " + line.join(",") + " ,\n"
|
|
|
|
end
|
|
|
|
ret.gsub('"' , '')
|
2019-08-06 17:33:27 +02:00
|
|
|
end
|
2019-08-07 11:06:06 +02:00
|
|
|
|
2019-08-06 17:33:27 +02:00
|
|
|
end
|
2017-09-07 07:16:37 +02:00
|
|
|
|
|
|
|
module MomCompile
|
2018-06-29 22:04:50 +02:00
|
|
|
include ScopeHelper
|
2017-09-07 07:16:37 +02:00
|
|
|
|
2018-07-02 14:52:51 +02:00
|
|
|
def compile_mom(input)
|
2019-02-08 22:03:23 +01:00
|
|
|
RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_mom(input)
|
2017-09-07 07:16:37 +02:00
|
|
|
end
|
|
|
|
|
2017-04-10 15:12:15 +02:00
|
|
|
end
|