Logo
Explore Mail Help
Register Sign In
Mirror/wren
1
0
Fork 1
You've already forked wren
mirror of https://github.com/wren-lang/wren.git synced 2026-01-16 20:28:04 +01:00
Code Issues Packages Projects Releases Wiki Activity
Files
63d12555663038b41cd240c9dfdcee12f673bb44
wren/test/variable/scope_while.wren

8 lines
129 B
Plaintext
Raw Normal View History

Start getting block scope working.
2013-11-18 09:19:03 -08:00
// Body has its own scope.
var a = "outer"
var i = 0
Get closures working! In the process, I had to change the grammar. There is now a strong separation between statements and expressions. The code was just wrong before when it popped locals at the end of a block scope because there could be temporaries on the stack if the block was in expression position. This fixes that. Still need to implement closing over `this`.
2013-12-04 07:43:50 -08:00
while ((i = i + 1) <= 1) {
var a = "inner"
}
Make IO a static class instead of a singleton.
2013-12-21 19:25:09 -08:00
IO.write(a) // expect: outer
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.24.0 Page: 595ms Template: 3ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API