We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
It would be nice to be able to specify which specific goal to use when parsing something:
a, b, c with FormalParameters[~Yield, ~Await] -> [Identifier, Identifier, Identifier]
a, b, c
FormalParameters[~Yield, ~Await]
[Identifier, Identifier, Identifier]
const a = 5; return a; with FunctionBody[~Yield, ~Await] -> [VariableDeclaration, ReturnStatement]
const a = 5; return a;
FunctionBody[~Yield, ~Await]
[VariableDeclaration, ReturnStatement]