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
1933956323e758a10dce2ad226681d07052e1358
wren
/
test
/
setter
/
static.wren
T
8 lines
97 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 {
static bar = value {
feat: rename IO.write to IO.print and add Unicode escape support in strings
2014-01-05 20:27:12 +00:00
IO.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