Files
wren/test/this/this_in_method.wren
T

7 lines
103 B
Plaintext
Raw Normal View History

2013-11-09 15:42:23 -08:00
class Foo {
2013-12-04 07:43:50 -08:00
bar { return this }
baz { return "baz" }
2013-11-09 15:42:23 -08:00
}
IO.write((new Foo).bar.baz) // expect: baz