Files
wren/test/language/this/this_in_method.wren
Bob Nystrom eff4485a56 Clean up definition syntax:
- Don't use "def" on constructors.
- Put "foreign" and "static" before "def".
2015-12-18 06:59:49 -08:00

8 lines
122 B
Plaintext

class Foo {
construct new() {}
def bar { this }
def baz { "baz" }
}
System.print(Foo.new().bar.baz) // expect: baz