From b4834ae92f2b0188ea9c8921d444227184357491 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 23 Sep 2013 12:20:14 +0800 Subject: [PATCH] JSDOC/CompressWhite.js --- JSDOC/CompressWhite.js | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/JSDOC/CompressWhite.js b/JSDOC/CompressWhite.js index 249afe7..50d7476 100644 --- a/JSDOC/CompressWhite.js +++ b/JSDOC/CompressWhite.js @@ -274,8 +274,6 @@ const CompressWhite = function (ts, packer, keepWhite) try { out.length = ts.slen; } catch (e) {} // prealloc. out = ''; - print("CW: " +out); - var tok; while (true) { @@ -293,7 +291,7 @@ const CompressWhite = function (ts, packer, keepWhite) if (tok.type == "NAME" && tok.identifier && tok.identifier.mungedValue && tok.identifier.mungedValue.length) { //f.write(tok.identifier.mungedValue); - print("MUNGED: " + tok.identifier.mungedValue); + //print("MUNGED: " + tok.identifier.mungedValue); out += tok.identifier.mungedValue; continue; } @@ -303,22 +301,17 @@ const CompressWhite = function (ts, packer, keepWhite) if ((tok.type == 'STRN') && (tok.name== 'DOUBLE_QUOTE')) { if (packer && packer.stringHandler) { out += packer.stringHandler(tok); - print("STR: " +out); continue; } } - + out += tok.outData !== false ? tok.outData : tok.data; - print("TOK: " +out); if ((tok.outData == ';') && (out.length - outoff > 255)) { outoff = out.length; out += "\n"; - print("BR: " +out); } } - print("CW: " +out); - //f.close(); /* // remove the last ';' !!! -- 2.39.2