|
|
|
@ -1369,8 +1369,6 @@ module.exports = grammar({ |
|
|
|
}, |
|
|
|
}); |
|
|
|
|
|
|
|
module.exports.PREC = PREC; |
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|
* @param {string} suffix |
|
|
|
@ -1468,3 +1466,9 @@ function commaSep(rule) { |
|
|
|
function commaSep1(rule) { |
|
|
|
return seq(rule, repeat(seq(',', rule))); |
|
|
|
} |
|
|
|
|
|
|
|
module.exports.PREC = PREC; |
|
|
|
module.exports.preprocIf = preprocIf; |
|
|
|
module.exports.preprocessor = preprocessor; |
|
|
|
module.exports.commaSep = commaSep; |
|
|
|
module.exports.commaSep1 = commaSep1; |