clarity-pattern-parser 9.2.0 → 9.2.1
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/grammar/patterns/body.d.ts +2 -2
- package/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/grammar/patterns/body.ts +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const body:
|
|
1
|
+
import { Optional } from "../../patterns/Optional";
|
|
2
|
+
export declare const body: Optional;
|
package/dist/index.browser.js
CHANGED
|
@@ -2066,7 +2066,7 @@
|
|
|
2066
2066
|
bodyLineContent,
|
|
2067
2067
|
optionalLineSpaces$2,
|
|
2068
2068
|
]);
|
|
2069
|
-
const body = new Repeat("body", bodyLine, { divider: newLine$1
|
|
2069
|
+
const body = new Optional("optional-body", new Repeat("body", bodyLine, { divider: newLine$1 }));
|
|
2070
2070
|
|
|
2071
2071
|
const optionalSpaces$1 = new Optional("optional-spaces", allSpaces);
|
|
2072
2072
|
const optionalLineSpaces$1 = new Optional("options-line-spaces", lineSpaces$1);
|