theprogrammablemind 7.3.5-beta.16 → 7.3.5-beta.18

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/package.json +1 -1
  2. package/src/semantics.js +3 -0
package/package.json CHANGED
@@ -60,6 +60,6 @@
60
60
  "json-stable-stringify": "^1.0.1",
61
61
  "node-fetch": "^2.6.1"
62
62
  },
63
- "version": "7.3.5-beta.16",
63
+ "version": "7.3.5-beta.18",
64
64
  "license": "ISC"
65
65
  }
package/src/semantics.js CHANGED
@@ -169,6 +169,9 @@ class Semantics {
169
169
  let counter = 0;
170
170
  for (const isemantic in this.semantics) {
171
171
  const semantic = this.semantics[isemantic]
172
+ if (!semantic) {
173
+ debugger;
174
+ }
172
175
  if (semantic.matches(args, context, options)) {
173
176
  if (!this.calls[counter]) {
174
177
  this.calls[counter] = 0;