Closed as not planned
Description
using JuliaSyntax
txt = "using Measurements: (..)"
JuliaSyntax.parse(SyntaxNode, txt)
emits a warning:
ERROR: ParseError:
# Warning @ line 1:17
using Measurements: (..)
# └──┘ ── parentheses are not required here
This is incorrect, though, because removing those parentheses makes it unparsable:
txt = "using Measurements: .."
JuliaSyntax.parse(SyntaxNode, txt)
ERROR: ParseError:
# Error @ line 1:23
using Measurements: ..
# └ ── premature end of input
Metadata
Metadata
Assignees
Labels
No labels