Differences From Artifact [ca76af0666]:
- File gc_core/js/jsex_map.js — part of check-in [b08f2ef338] at 2017-08-06 00:44:03 on branch webext2_illusion — [core][js] ajout des ; oubliés et ajustement des ; en trop (commit erroné) (user: IllusionPerdu, size: 1263) [annotate] [blame] [check-ins using] [more...]
To Artifact [3dc39be41a]:
- File gc_core/js/jsex_map.js — part of check-in [b89dc82bc4] at 2017-08-08 19:11:22 on branch webext2_fix — [core] add inline config for JSHint assuming es6 synthax and some global (user: IllusionPerdu, size: 1287) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 | // Map if (Map.prototype.grammalecte === undefined) { Map.prototype.gl_shallowCopy = function () { let oNewMap = new Map(); for (let [key, val] of this.entries()) { oNewMap.set(key, val); } | > | 1 2 3 4 5 6 7 8 9 10 | // Map /*jslint esversion: 6*/ if (Map.prototype.grammalecte === undefined) { Map.prototype.gl_shallowCopy = function () { let oNewMap = new Map(); for (let [key, val] of this.entries()) { oNewMap.set(key, val); } |
︙ | ︙ |