mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 14:21:10 +02:00
fix "for" compilation
* module/language/ecmascript/compile-ghil.scm (comp): Whoops, fix `for' compilation.
This commit is contained in:
parent
143177ed9e
commit
bb67fe27ab
1 changed files with 2 additions and 2 deletions
|
@ -442,8 +442,8 @@
|
|||
(make-ghil-if
|
||||
e l (comp (or test 'true) e)
|
||||
(make-ghil-begin
|
||||
e l (list (comp (or inc '(begin)) e)
|
||||
(comp statement e)
|
||||
e l (list (comp statement e)
|
||||
(comp (or inc '(begin)) e)
|
||||
(make-ghil-call e l (make-ghil-ref
|
||||
e l (ghil-var-for-ref! e '%continue))
|
||||
'())))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue