We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf36b03 commit f333471Copy full SHA for f333471
grammar.js
@@ -1369,8 +1369,6 @@ module.exports = grammar({
1369
},
1370
});
1371
1372
-module.exports.PREC = PREC;
1373
-
1374
/**
1375
*
1376
* @param {string} suffix
@@ -1468,3 +1466,9 @@ function commaSep(rule) {
1468
1466
function commaSep1(rule) {
1469
1467
return seq(rule, repeat(seq(',', rule)));
1470
}
+
+module.exports.PREC = PREC;
1471
+module.exports.preprocIf = preprocIf;
1472
+module.exports.preprocessor = preprocessor;
1473
+module.exports.commaSep = commaSep;
1474
+module.exports.commaSep1 = commaSep1;
0 commit comments