Skip to content

Commit

Permalink
Logging cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
will62794 committed Jan 2, 2025
1 parent 9e2bda0 commit d701541
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/eval.js
Original file line number Diff line number Diff line change
Expand Up @@ -1482,7 +1482,7 @@ class TLASpec {

// The definition identifier name.
node = cursor.currentNode()
console.log(node.text, node)
console.log("Adding parsed operator definition:", node.text, node)
// console.log(cursor.currentFieldName());
assert(node.type === "identifier");
let opName = node.text;
Expand Down Expand Up @@ -3033,6 +3033,8 @@ function evalPrefixedOp(node, ctx) {
//

let prefixedOpName = modPrefix + opName;
console.log("prefixedOpName:", prefixedOpName);


// Even if it this a prefixed op, this may still be being evaluated inside an expression from
// a namespaced module instantiation e.g. M2!M3!Expr.
Expand Down

0 comments on commit d701541

Please sign in to comment.