File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
Cil2Js/JsResolvers/Classes Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,6 @@ public static Stmt Decode(Ctx ctx) {
162162 var isObject = false;
163163 if (o._ !== undefined) {
164164 if (o['']) { // Array
165- console.log('array');
166165 var oArray = o[''];
167166 var ret = new Array(oArray.length);
168167 ret._ = $$[o._];
@@ -180,22 +179,18 @@ public static Stmt Decode(Ctx ctx) {
180179 }
181180 }
182181 } else { // Object or boxed struct
183- console.log('obj/bvt');
184182 isObject = true;
185183 }
186184 } else if (typeof(o) === 'object' && !(o instanceof Array)) { // unboxed value-type
187- console.log('unboxed vt');
188185 isObject = true;
189186 } else if (o instanceof Array && o.length === 1) { // Special Single/Double
190- console.log('special: [' + o[0] + ']');
191187 switch (o[0]) {
192188 case 0: ret = NaN; break;
193189 case 1: ret = Number.POSITIVE_INFINITY; break;
194190 case -1: ret = Number.NEGATIVE_INFINITY; break;
195191 default: throw 'Unrecognised special: ' + o[0];
196192 }
197193 } else { // unboxed primitive or null
198- console.log('primitive: ' + o);
199194 ret = o;
200195 }
201196 if (isObject) {
You can’t perform that action at this time.
0 commit comments