fix method to_vool

This commit is contained in:
Torsten Ruger 2018-07-19 21:36:28 +03:00
parent 7b4a0126f7
commit 238f09b5ad
2 changed files with 22 additions and 7 deletions

View File

@ -9,7 +9,7 @@ module Ruby
end
def to_vool
MethodStatement.new( @name , @args , @body.normalize)
Vool::MethodStatement.new( @name , @args.dup , @body.to_vool)
end
def to_s(depth = 0)

View File

@ -1,32 +1,47 @@
require_relative "helper"
module Ruby
class TestMethodStatementTrans < MiniTest::Test
include RubyTests
def setup()
input = "def tryout(arg1, arg2) ; a = arg1 ; end "
@lst = compile( input ).to_vool
end
def test_method
assert_equal Vool::MethodStatement , @lst.class
end
def test_method_args
assert_equal [:arg1, :arg2] , @lst.args
end
def test_body_is_scope_zero_statement
assert_equal Vool::LocalAssignment , @lst.body.class
end
end
class TestMethodStatement < MiniTest::Test
include RubyTests
def basic_setup()
def setup()
input = "def tryout(arg1, arg2) ; true ; false ; end "
@lst = compile( input )
end
def test_method
basic_setup
assert_equal MethodStatement , @lst.class
end
def test_method_name
basic_setup
assert_equal :tryout , @lst.name
end
def test_method_args
basic_setup
assert_equal [:arg1, :arg2] , @lst.args
end
def test_basic_body
basic_setup
assert_equal ScopeStatement , @lst.body.class
assert_equal 2 , @lst.body.length
end
end
class TestMethodStatement2 < MiniTest::Test
include RubyTests
def test_body_is_scope_one_statement
input = "def tryout(arg1, arg2) ; a = true ; end "
lst = compile( input )