2017-04-12 19:18:41 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Vool
|
|
|
|
class TestLocal < MiniTest::Test
|
|
|
|
|
|
|
|
def test_local
|
|
|
|
lst = RubyCompiler.compile( "foo = bar")
|
|
|
|
assert_equal LocalAssignment , lst.class
|
|
|
|
end
|
|
|
|
def test_local_name
|
|
|
|
lst = RubyCompiler.compile( "foo = bar")
|
|
|
|
assert_equal :foo , lst.name
|
|
|
|
end
|
2017-09-10 12:04:36 +02:00
|
|
|
def test_local_const
|
|
|
|
lst = RubyCompiler.compile( "foo = 5")
|
|
|
|
assert_equal LocalAssignment , lst.class
|
|
|
|
end
|
2018-03-18 18:08:00 +01:00
|
|
|
def test_local_ivar
|
|
|
|
lst = RubyCompiler.compile( "foo = @iv")
|
|
|
|
assert_equal LocalAssignment , lst.class
|
|
|
|
assert_equal InstanceVariable , lst.value.class
|
|
|
|
end
|
2017-04-12 19:18:41 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|