Skip to content

Commit b96d8cc

Browse files
committed
better syntax errors for break / continue statements, closes #9358
1 parent a0e503e commit b96d8cc

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/julia-parser.scm

+8-1
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,14 @@
12251225
(if (or (eqv? t #\newline) (closing-token? t))
12261226
(list 'return '(null))
12271227
(list 'return (parse-eq s)))))
1228-
((break continue) (list word))
1228+
((break continue)
1229+
(let ((t (peek-token s)))
1230+
(if (or (eof-object? t)
1231+
(and (eq? t 'end) (not end-symbol))
1232+
(memv t '(#\newline #\; #\) :)))
1233+
(list word)
1234+
(error (string "unexpected \"" t "\" after " word)))))
1235+
12291236
((const)
12301237
(let ((assgn (parse-eq s)))
12311238
(if (not (and (pair? assgn)

0 commit comments

Comments
 (0)