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