rlox/interpreter/tests/lox/this/this_in_method.lox

6 lines
106 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
class Foo {
bar() { return this; }
baz() { return "baz"; }
}
print Foo().bar().baz(); // expect: baz