2017-09-05 11:04:52 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Vool
|
|
|
|
class TestSimpleWhileMom < MiniTest::Test
|
2019-08-07 14:08:45 +02:00
|
|
|
include VoolCompile
|
2017-09-05 11:04:52 +02:00
|
|
|
|
|
|
|
def setup
|
2019-02-08 22:03:23 +01:00
|
|
|
Parfait.boot!(Parfait.default_test_options)
|
2019-08-17 22:29:42 +02:00
|
|
|
@compiler = compile_first_method( "while(@a) ; @a = 5 ; end;return")
|
2019-08-07 14:08:45 +02:00
|
|
|
@ins = @compiler.mom_instructions.next
|
2017-09-05 11:04:52 +02:00
|
|
|
end
|
|
|
|
|
2017-09-07 07:17:13 +02:00
|
|
|
def test_compiles_as_while
|
2018-03-16 14:11:17 +01:00
|
|
|
assert_equal Label , @ins.class , @ins
|
2017-09-05 11:04:52 +02:00
|
|
|
end
|
|
|
|
def test_condition_compiles_to_check
|
2018-03-16 14:11:17 +01:00
|
|
|
assert_equal TruthCheck , @ins.next.class , @ins
|
2017-09-05 11:04:52 +02:00
|
|
|
end
|
|
|
|
def test_condition_is_slot
|
2018-03-16 14:11:17 +01:00
|
|
|
assert_equal SlotDefinition , @ins.next.condition.class , @ins
|
2017-09-05 11:04:52 +02:00
|
|
|
end
|
2018-03-15 16:21:46 +01:00
|
|
|
def test_array
|
2019-08-07 14:08:45 +02:00
|
|
|
check_array [Label, TruthCheck, SlotLoad, Jump, Label ,
|
2019-08-17 22:29:42 +02:00
|
|
|
SlotLoad, ReturnJump,Label, ReturnSequence, Label], @ins
|
2018-03-15 16:21:46 +01:00
|
|
|
end
|
2017-09-05 11:04:52 +02:00
|
|
|
end
|
|
|
|
end
|