aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test
diff options
context:
space:
mode:
authorEduardo Julian2019-05-05 19:50:11 -0400
committerEduardo Julian2019-05-05 19:50:11 -0400
commit4a81610a54b43b2084976ee4ebc86b3b94fb047c (patch)
tree194a961cda8991563cdc84c891073642e12b9cfa /stdlib/source/test
parent1bce0132321794e421508ae687c9b1b68725a088 (diff)
Can now set the name of the "this" object, instead of being forced to use "_jvm_this".
Diffstat (limited to 'stdlib/source/test')
-rw-r--r--stdlib/source/test/lux/host.old.lux8
1 files changed, 4 insertions, 4 deletions
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