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.
- package/package.json +1 -1
- package/src/semantics.js +3 -0
package/package.json
CHANGED
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;
|