add call statement tests
This commit is contained in:
parent
84eb516a01
commit
a6712fc4f9
@ -20,7 +20,7 @@ module Phisol
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
if( code )
|
if( code )
|
||||||
puts "addin code #{code}"
|
#puts "addin code #{code}"
|
||||||
@method.source.add_code code
|
@method.source.add_code code
|
||||||
else
|
else
|
||||||
raise "must define variable #{name} before using it in #{@method.inspect}"
|
raise "must define variable #{name} before using it in #{@method.inspect}"
|
||||||
|
89
test/compiler/statements/test_call.rb
Normal file
89
test/compiler/statements/test_call.rb
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
require_relative 'helper'
|
||||||
|
|
||||||
|
module Register
|
||||||
|
class TestCallStatement < MiniTest::Test
|
||||||
|
include Statements
|
||||||
|
|
||||||
|
def test_call_constant_int
|
||||||
|
@string_input = <<HERE
|
||||||
|
class Object
|
||||||
|
int main()
|
||||||
|
42.putint()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
HERE
|
||||||
|
@expect = [[Virtual::MethodEnter,LoadConstant,GetSlot,
|
||||||
|
SetSlot,LoadConstant,SetSlot,Virtual::MethodCall,GetSlot] ,
|
||||||
|
[Virtual::MethodReturn]]
|
||||||
|
check
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def test_call_constant_string
|
||||||
|
@string_input = <<HERE
|
||||||
|
class Object
|
||||||
|
int main()
|
||||||
|
"Hello".putstring()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
HERE
|
||||||
|
@expect = [[Virtual::MethodEnter,LoadConstant,GetSlot,
|
||||||
|
SetSlot,LoadConstant,SetSlot,Virtual::MethodCall,GetSlot] ,
|
||||||
|
[Virtual::MethodReturn]]
|
||||||
|
check
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_call_local_int
|
||||||
|
@string_input = <<HERE
|
||||||
|
class Object
|
||||||
|
int main()
|
||||||
|
int testi = 20
|
||||||
|
testi.putint()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
HERE
|
||||||
|
@expect = [ [Virtual::MethodEnter,LoadConstant,SetSlot,GetSlot,
|
||||||
|
GetSlot,SetSlot,LoadConstant,SetSlot,Virtual::MethodCall,
|
||||||
|
GetSlot] ,[Virtual::MethodReturn] ]
|
||||||
|
check
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_call_local_class
|
||||||
|
@string_input = <<HERE
|
||||||
|
class List < Object
|
||||||
|
int add()
|
||||||
|
return 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
class Object
|
||||||
|
int main()
|
||||||
|
List test_l
|
||||||
|
test_l.add()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
HERE
|
||||||
|
@expect = [ [Virtual::MethodEnter,GetSlot,GetSlot,SetSlot,
|
||||||
|
LoadConstant,SetSlot,Virtual::MethodCall,
|
||||||
|
GetSlot] ,[Virtual::MethodReturn] ]
|
||||||
|
check
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_puts_string
|
||||||
|
@string_input = <<HERE
|
||||||
|
class Object
|
||||||
|
int puts(Word str)
|
||||||
|
return str
|
||||||
|
end
|
||||||
|
int main()
|
||||||
|
puts("Hello")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
HERE
|
||||||
|
@expect = [ [Virtual::MethodEnter , GetSlot,SetSlot,LoadConstant,SetSlot,LoadConstant,
|
||||||
|
SetSlot,Virtual::MethodCall,GetSlot],
|
||||||
|
[Virtual::MethodReturn]]
|
||||||
|
check
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user