-
-
Notifications
You must be signed in to change notification settings - Fork 43
Closed
Labels
Description
From #31 (comment)
- Unary versions
.<:and.>:parse but they shouldn't. - Also, them not being translated to the dotted versions in the
Exprconversion is weird.
julia> JuliaSyntax.parseall(Expr, ".<: b", rule=:statement)
:(<:b)
julia> Meta.parse(".<: b")
ERROR: Base.Meta.ParseError("\".<:\" is not a unary operator")
Stacktrace:
...
julia> JuliaSyntax.parseall(Expr, ".>: b", rule=:statement)
:(>:b)
julia> Meta.parse(".>: b")
ERROR: Base.Meta.ParseError("\".>:\" is not a unary operator")
...