aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test
diff options
context:
space:
mode:
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