-
Notifications
You must be signed in to change notification settings - Fork 234
Open
Description
src/parser/grammar.ts(38,68): error TS6133: 'd' is declared but its value is never read.
src/parser/grammar.ts(41,70): error TS6133: 'd' is declared but its value is never read.
The workaround of course is to change my typescript config to:
{
"noUnusedParameters": false
}The offending rules are:
{
ParserRules: [
// ...
{"name": "_", "symbols": ["_$ebnf$1"], "postprocess": function(d) {return null;}},
// ... and
{"name": "__$ebnf$1", "symbols": ["__$ebnf$1", "wschar"], "postprocess": (d) => d[0].concat([d[1]])},
// ...
]
}It would be nice to be able to avoid this problem though. Thoughts?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels