Files
wren/test/setter/same_name_as_method.wren
T

9 lines
149 B
Plaintext
Raw Normal View History

2013-12-20 07:05:31 -08:00
class Foo {
bar=(value) { IO.print("set") }
2014-01-05 12:27:12 -08:00
bar { IO.print("get") }
2013-12-20 07:05:31 -08:00
}
var foo = new Foo
foo.bar = "value" // expect: set
foo.bar // expect: get