rlox/interpreter/tests/lox/this/this_in_method.lox
2024-09-01 19:15:55 +02:00

6 lines
106 B
Lox

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