clarity-pattern-parser 9.2.3 → 9.2.4
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/dist/index.browser.js +2 -3
- package/dist/index.browser.js.map +1 -1
- package/dist/index.esm.js +2 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/grammar/Grammar.test.ts +11 -0
- package/src/grammar/patterns/body.ts +2 -3
- package/src/grammar/patterns.test.ts +1 -1
package/dist/index.browser.js
CHANGED
|
@@ -2058,13 +2058,12 @@
|
|
|
2058
2058
|
|
|
2059
2059
|
const bodyLineContent = new Options("body-line-content", [
|
|
2060
2060
|
comment,
|
|
2061
|
-
statement
|
|
2062
|
-
lineSpaces$1
|
|
2061
|
+
statement
|
|
2063
2062
|
]);
|
|
2064
2063
|
const optionalLineSpaces$2 = new Optional("optional-line-spaces", lineSpaces$1);
|
|
2065
2064
|
const bodyLine = new Sequence("body-line", [
|
|
2066
2065
|
optionalLineSpaces$2,
|
|
2067
|
-
bodyLineContent,
|
|
2066
|
+
new Optional("optional-body-line-content", bodyLineContent),
|
|
2068
2067
|
optionalLineSpaces$2,
|
|
2069
2068
|
]);
|
|
2070
2069
|
const body = new Optional("optional-body", new Repeat("body", bodyLine, { divider: newLine$1 }));
|