theprogrammablemind_4wp 9.6.3-beta.27 → 9.6.3-beta.29

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 +1 -1
package/package.json CHANGED
@@ -73,6 +73,6 @@
73
73
  "scriptjs": "^2.5.9",
74
74
  "uuid": "^8.3.2"
75
75
  },
76
- "version": "9.6.3-beta.27",
76
+ "version": "9.6.3-beta.29",
77
77
  "license": "UNLICENSED"
78
78
  }
package/src/semantics.js CHANGED
@@ -179,7 +179,6 @@ class Semantics {
179
179
  args = { ...args }
180
180
 
181
181
  const config = args.config
182
- const debug = config.getDebug()
183
182
  let contextPrime = Object.assign({}, context)
184
183
  const s = (context, options) => this.apply(args, context, options)
185
184
  let applied = false
@@ -213,6 +212,7 @@ class Semantics {
213
212
  }
214
213
  args._continue = _continue
215
214
  if (process.env.TPMKMS_TRACE) {
215
+ console.error("TPMKMS_TRACE", debug.counter("TPMKMS_TRACE"))
216
216
  console.error(semantic.toLabel())
217
217
  console.error(semantic.toString())
218
218
  }