overpy 9.5.11 → 9.5.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/overpy.js +2 -0
- package/package.json +1 -1
package/overpy.js
CHANGED
|
@@ -47870,6 +47870,8 @@ function parseAstRules(rules) {
|
|
|
47870
47870
|
} else if (rule.name in astMacros) {
|
|
47871
47871
|
rulesResult.push(...parseAstRules(parseAstMacro(rule)));
|
|
47872
47872
|
continue;
|
|
47873
|
+
} else if (rule.name === "pass") {
|
|
47874
|
+
continue;
|
|
47873
47875
|
} else {
|
|
47874
47876
|
error("Unexpected function '" + rule.name + "' outside a rule");
|
|
47875
47877
|
}
|
package/package.json
CHANGED