JuliaLang / JuliaLang/JuliaSyntax.jl
Misleading error message when missing comma in argument list
Open
error messages
regression
- Dominant language
- Julia
- Stars
- 293
- Forks
- 50
- PR merge metrics
- No merged PRs in 30d
Description
flisp
```julia
julia> f(a, b, c d, e)
ERROR: syntax: missing comma or ) in argument list
```
JuliaSyntax
```julia
julia> f(a, b, c d, e)
ERROR: ParseError:
# Error @ REPL[12]:1:11
f(a, b, c d, e)
# └──┘ ── Expected `)`
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.