-
-
Notifications
You must be signed in to change notification settings - Fork 43
Closed
Labels
Description
Bunch of nasty edge cases related to symbols followed by primes:
julia> Meta.parse(":+'")
:(:+')
julia> JuliaSyntax.parseall(Expr, ":+'")
ERROR: ParseError:
Error: extra tokens after end of expression
@ line 1:3
:+'
julia> Meta.parse(":+'l'")
:(:+' * l')
julia> JuliaSyntax.parseall(Expr, ":+'l'")
ERROR: ParseError:
Error: extra tokens after end of expression
@ line 1:3
:+'l'
julia> Meta.parse(":?'")
:(:?')
julia> JuliaSyntax.parseall(Expr, ":?'")
ERROR: ParseError:
Error: extra tokens after end of expression
@ line 1:3
:?'