@bablr/bablr-vm 0.19.0 → 0.19.2

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.
Files changed (2) hide show
  1. package/lib/match.js +1 -1
  2. package/package.json +7 -7
package/lib/match.js CHANGED
@@ -446,7 +446,7 @@ export class Match extends WeakStackFrame {
446
446
  if (
447
447
  tagPath.tag.type === OpenNodeTag &&
448
448
  tagPath.tag.value.type &&
449
- nodeStates.get(tagPath.path.node).unboundAttributes?.size
449
+ nodeStates.get(tagPath.path.node)?.unboundAttributes?.size
450
450
  ) {
451
451
  break;
452
452
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bablr/bablr-vm",
3
3
  "description": "A VM for parsing using BABLR languages",
4
- "version": "0.19.0",
4
+ "version": "0.19.2",
5
5
  "author": "Conrad Buck<conartist6@gmail.com>",
6
6
  "type": "module",
7
7
  "files": [
@@ -12,13 +12,13 @@
12
12
  },
13
13
  "sideEffects": false,
14
14
  "dependencies": {
15
- "@bablr/agast-helpers": "0.6.0",
16
- "@bablr/agast-vm": "0.7.0",
17
- "@bablr/agast-vm-helpers": "0.6.0",
15
+ "@bablr/agast-helpers": "0.6.1",
16
+ "@bablr/agast-vm": "0.7.1",
17
+ "@bablr/agast-vm-helpers": "0.6.1",
18
18
  "@bablr/coroutine": "0.1.0",
19
- "@bablr/helpers": "0.21.1",
20
- "@bablr/regex-vm": "0.10.0",
21
- "@bablr/weak-stack": "0.1.0",
19
+ "@bablr/helpers": "0.21.4",
20
+ "@bablr/regex-vm": "0.10.1",
21
+ "@bablr/weak-stack": "1.0.0",
22
22
  "@iter-tools/imm-stack": "1.1.0",
23
23
  "iter-tools-es": "7.5.3"
24
24
  },