Files
wren/test/this/this_in_method.wren
T

7 lines
89 B
Plaintext
Raw Normal View History

2013-11-09 15:42:23 -08:00
class Foo {
2014-04-03 07:48:19 -07:00
bar { this }
baz { "baz" }
2013-11-09 15:42:23 -08:00
}
2014-01-05 12:27:12 -08:00
IO.print((new Foo).bar.baz) // expect: baz