-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[1,1]]]] should be rejected by the parser #86
Labels
bug
Indicates an unexpected problem or unintended behavior
Comments
This is just a symtom of a more general problem, which is that the repl (and perhaps the parser) still accept arbitrary amounts of trailing junk after a valid expression. |
ghost
assigned JeffBezanson
Jun 27, 2011
JeffBezanson
added a commit
that referenced
this issue
Jun 28, 2011
StefanKarpinski
added a commit
that referenced
this issue
Jun 28, 2011
* 'master' of github.com:JuliaLang/julia: Use :foo instead of "foo" for all lapack calls fixing issue #86, give parse error when there is extra junk after an expression
StefanKarpinski
pushed a commit
that referenced
this issue
Feb 8, 2018
Resolution log - looking into what the solver is doing, and why
Keno
pushed a commit
that referenced
this issue
Oct 9, 2023
…ctions (#86) * fixes for stack inversion in Debugger.jl, also remove some unused functions * remove moved macro definition
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
All of these should be parse errors:
julia> [1,1]]]]
[1,1]
julia> {1,1}}}}
{1,1}
julia> (1,1))))
(1,1)
The text was updated successfully, but these errors were encountered: