From 4a81610a54b43b2084976ee4ebc86b3b94fb047c Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sun, 5 May 2019 19:50:11 -0400 Subject: Can now set the name of the "this" object, instead of being forced to use "_jvm_this". --- stdlib/source/test/lux/host.old.lux | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'stdlib/source/test') diff --git a/stdlib/source/test/lux/host.old.lux b/stdlib/source/test/lux/host.old.lux index 04c149881..c9446b857 100644 --- a/stdlib/source/test/lux/host.old.lux +++ b/stdlib/source/test/lux/host.old.lux @@ -37,23 +37,23 @@ (:= ::bar value) (:= ::baz "") [])) - (#public (virtual) java/lang/Object + (#public (virtual self) java/lang/Object "") (#public #static (static) java/lang/Object "") - (Runnable [] (run) void + (Runnable [] (run self) void [])) (def: test-runnable (object [] [Runnable] [] - (Runnable [] (run) void + (Runnable [] (run self) void []))) (def: test-callable (object [a] [(Callable a)] [] - (Callable [] (call) a + (Callable [] (call self) a (undefined)))) (interface: TestInterface -- cgit v1.2.3