Jeff Bezanson
Jeff Bezanson
In src/syntax/dump.jl. This is broken in julia v1.5.
Really nice package! Just taking a close look at the API. `save` is a bit odd to me since it doesn't actually save anything unless the function you pass also...
Rebased #45447 and moved to this repo. Fixes https://github.com/JuliaLang/julia/issues/17573
I get ``` julia> 'abc' 'a': ASCII/Unicode U+0061 (category Ll: Letter, lowercase) ``` Should be ``` julia> 'abc' ERROR: syntax: character literal contains multiple characters ```
If I enter ``` julia> a b ``` it waits for more input. This should be an immediate "extra token" error.
``` julia> "a$2" ERROR: ParseError: Error: identifier or parenthesized expression expected after $ in string @ REPL[14]:1:4 "a$2" julia> ``` The error is correct but there is an extra blank...
``` julia> 2**3 ERROR: ParseError: Error: invalid syntax atom @ REPL[3]:1:2 2**3 Error: extra tokens after end of expression @ REPL[3]:1:4 2**3 ``` instead of ``` julia> 2**3 ERROR: syntax:...
``` julia> a,,b ERROR: ParseError: Error: unexpected closing token ``` I don't see this as a closing token. The standard parser says ``` julia> a,,b ERROR: syntax: unexpected "," ```...
There are now >=3 implementations of `download`: one in Base, one in WinRPM, and one in BinDeps. They are all slightly different in unhelpful ways. This is bananas. Everything we...