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
83bb04332711d79f6a03658e77b836943c2e75ac
wren
/
test
/
language
/
constructor
/
super_must_have_args.wren
T
8 lines
79 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Make constructors just methods.
2015-07-10 09:18:22 -07:00
class A {}
class B is A {
Use "construct" instead of "this" to define constructors.
2015-07-21 07:24:53 -07:00
construct new() {
Make constructors just methods.
2015-07-10 09:18:22 -07:00
super // expect error
}
}
Reference in New Issue
Copy Permalink