Files
wren/test/language/this/this_in_method.wren
T

8 lines
114 B
Plaintext
Raw Normal View History

2013-11-09 15:42:23 -08:00
class Foo {
2015-09-01 08:16:04 -07:00
construct new() {}
2014-04-03 07:48:19 -07:00
bar { this }
baz { "baz" }
2013-11-09 15:42:23 -08:00
}
2015-09-15 07:46:09 -07:00
System.print(Foo.new().bar.baz) // expect: baz