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
e4901c51d8a33b71b3d1d27b472610ffa8905440
wren
/
test
/
language
/
nonlocal
/
undefined.wren
T
5 lines
92 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Make constructors just methods.
2015-07-10 09:18:22 -07:00
var fn = Fn.new {
Report undefined variable errors on the line where they are used.
2016-03-16 08:00:28 -07:00
System.print(Foo) // expect error
System.print(Bar) // expect error
Implicitly define nonlocal names.
2015-01-14 23:08:25 -08:00
}
Reference in New Issue
Copy Permalink