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.js CHANGED
@@ -2056,13 +2056,12 @@ const statement = new Options("statement", [assignStatement, name$1.clone("expor
2056
2056
 
2057
2057
  const bodyLineContent = new Options("body-line-content", [
2058
2058
  comment,
2059
- statement,
2060
- lineSpaces$1
2059
+ statement
2061
2060
  ]);
2062
2061
  const optionalLineSpaces$2 = new Optional("optional-line-spaces", lineSpaces$1);
2063
2062
  const bodyLine = new Sequence("body-line", [
2064
2063
  optionalLineSpaces$2,
2065
- bodyLineContent,
2064
+ new Optional("optional-body-line-content", bodyLineContent),
2066
2065
  optionalLineSpaces$2,
2067
2066
  ]);
2068
2067
  const body = new Optional("optional-body", new Repeat("body", bodyLine, { divider: newLine$1 }));