@gmb/bitmark-parser-generator 5.31.0 → 5.31.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.
@@ -3245,10 +3245,17 @@ var CARDSETS = {
3245
3245
  ]
3246
3246
  },
3247
3247
  {
3248
+ // matchMatrix cells are NESTED (`cells[$s]`), unlike matchPairs'
3249
+ // flat pair object — so `isCaseSensitive` must be written INTO the
3250
+ // cell, mirroring the sibling `example` rule above (`cells: { $s:
3251
+ // {...} }`). The earlier flat `{ isCaseSensitive: '$' }` (copied
3252
+ // from matchPairs) wrote at bit scope, so an authored cell-side
3253
+ // `[@isCaseSensitive:false]` (e.g. on a `++` value) was dropped
3254
+ // instead of landing on the cell. PLAN-122.
3248
3255
  key: ConfigKey.property_isCaseSensitive,
3249
3256
  exportJsonKey: [
3250
- { "@absent": { isCaseSensitive: "$ancestor" } },
3251
- { isCaseSensitive: "$" }
3257
+ { "@absent": { cells: { $s: { isCaseSensitive: "$ancestor" } } } },
3258
+ { cells: { $s: { isCaseSensitive: "$" } } }
3252
3259
  ],
3253
3260
  description: "Property to indicate if the match is case sensitive.",
3254
3261
  format: TagFormat.boolean
@@ -13905,7 +13912,7 @@ var instance2 = new Config();
13905
13912
  // src/generated/package_info.ts
13906
13913
  var PACKAGE_INFO = {
13907
13914
  "name": "@gmb/bitmark-parser-generator",
13908
- "version": "5.31.0",
13915
+ "version": "5.31.1",
13909
13916
  "author": "Get More Brain Ltd",
13910
13917
  "license": "ISC",
13911
13918
  "description": "A bitmark parser and generator using Peggy.js"
@@ -25807,6 +25814,7 @@ function peg$parse(input, options) {
25807
25814
  return s0;
25808
25815
  }
25809
25816
  var indentStack = [], indent = "";
25817
+ input = input.replace(/\s+$/, "");
25810
25818
  input = input.trimStart();
25811
25819
  peg$result = peg$startRuleFunction();
25812
25820
  const peg$success = peg$result !== peg$FAILED && peg$currPos === input.length;