This website requires JavaScript.
Explore
Help
Register
Sign In
retoor
/
wren
Watch
1
Star
0
Fork
0
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
6abebbe9060a01780df156d99444691021336442
wren
/
test
/
language
/
setter
/
static.wren
T
8 lines
101 B
Plaintext
Raw
Normal View
History
Unescape
Escape
feat: implement setter syntax and assignment in named method calls
2013-12-20 15:05:31 +00:00
class Foo {
feat: require parentheses around operator and setter method parameters in Wren
2014-04-09 00:54:37 +00:00
static bar=(value) {
feat: replace IO class with System class and remove separate IO module
2015-09-15 14:46:09 +00:00
System.print(value)
feat: implement setter syntax and assignment in named method calls
2013-12-20 15:05:31 +00:00
}
}
Foo.bar = "value" // expect: value
Reference in New Issue
Copy Permalink