Refactor call stack and its use throughout. CallFrame now does all bytecode processing, and the callframe is reinitialized anytime something might have changed, like a function call.
This commit is contained in:
@@ -5,7 +5,7 @@ obj = luajava.newInstance("SampleClass")
|
||||
print( obj )
|
||||
obj.s = "Hello"
|
||||
print( obj.s )
|
||||
print( obj.getS() )
|
||||
print( obj:getS() )
|
||||
|
||||
obj.setS( "World" )
|
||||
obj:setS( "World" )
|
||||
print( obj.s )
|
||||
|
||||
Reference in New Issue
Block a user