Skip to content

Commit e66b4f1

Browse files
committed
possible fix for #12697; allow using/import in value position more often
1 parent a4c2916 commit e66b4f1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/julia-syntax.scm

+6
Original file line numberDiff line numberDiff line change
@@ -2589,6 +2589,12 @@
25892589

25902590
((module)
25912591
(cons e '()))
2592+
((using import importall export)
2593+
(if dest
2594+
(let ((ex (to-lff '(null) dest tail)))
2595+
(cons (car ex)
2596+
(cons e (cdr ex))))
2597+
(cons e '())))
25922598

25932599
((symbolicgoto symboliclabel)
25942600
(cons (if tail '(return (null)) '(null))

0 commit comments

Comments
 (0)