rubyx/test/vool/test_variables.rb
2017-04-02 18:25:30 +03:00

15 lines
373 B
Ruby

require_relative "../helper"
module Vool
class TestVariables < MiniTest::Test
# "free standing" local can not be tested as it will result in send
# in other words ther is no way of knowing if a name is variable or method
# def test_send_to_local
# lst = Compiler.compile( "foo.bar")
# assert_equal SendStatement , lst.class
# end
end
end