mlox/lox.t/this/this_in_method.lox
2024-08-03 02:44:12 +02:00

6 lines
106 B
Lox

class Foo {
bar() { return this; }
baz() { return "baz"; }
}
print Foo().bar().baz(); // expect: baz