diff options
| author | Marshall Lochbaum <mwlochbaum@gmail.com> | 2020-08-09 22:37:18 -0400 |
|---|---|---|
| committer | Marshall Lochbaum <mwlochbaum@gmail.com> | 2020-08-09 22:37:18 -0400 |
| commit | d6d9c7d5f309582dceb3205eb9c5eafce8bd4680 (patch) | |
| tree | ca14de68d899e4c25dcba4e5c8607947885389da | |
| parent | dd5534452958d7b7ef50d23cb3ab9279c5e3f3ad (diff) | |
Remove debugging code
| -rw-r--r-- | bqn.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ let run = (B,O,S) => { // Bytecode, Objects, Sections/blocks case 15:{s.push(D[num()](e));break;} case 21:{let v=e[num()][num()];assert(v!==null);s.push(v);break;} case 22:{s.push([e[num()],num()]);break;} - case 25:if(s.length!==1){console.log(p-28,B.length,B.slice(p-28,p));console.log(s);}assert(s.length===1);return s[0]; + case 25:assert(s.length===1);return s[0]; } } try { |
