Files
wren/test/language/this/nested_class.wren

27 lines
391 B
Plaintext
Raw Permalink Normal View History

2013-12-21 15:55:08 -08:00
class Outer {
construct new() {}
2013-12-21 15:55:08 -08:00
method {
System.print(this) // expect: Outer
2013-12-21 15:55:08 -08:00
Fn.new {
System.print(this) // expect: Outer
2013-12-21 15:55:08 -08:00
class Inner {
construct new() {}
2013-12-21 15:55:08 -08:00
method {
System.print(this) // expect: Inner
2013-12-21 15:55:08 -08:00
}
toString { "Inner" }
2013-12-21 15:55:08 -08:00
}
Inner.new().method
}.call()
2013-12-21 15:55:08 -08:00
}
toString { "Outer" }
2013-12-21 15:55:08 -08:00
}
Outer.new().method