Files
wren/test/this/this_in_static_method.wren
T

11 lines
148 B
Plaintext
Raw Normal View History

2014-02-14 06:37:37 -08:00
class Foo {
static test {
IO.print(this == Foo) // expect: true
IO.print(this.bar) // expect: bar
}
2014-04-03 07:48:19 -07:00
static bar { "bar" }
2014-02-14 06:37:37 -08:00
}
Foo.test