Differences From Artifact [8feeee694f]:
- File gc_core/js/jsex_regex.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: 3846) [annotate] [blame] [check-ins using] [more...]
To Artifact [0c1a934c00]:
- File gc_core/js/jsex_regex.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: 3870) [annotate] [blame] [check-ins using] [more...]
- File js_extension/regex.js — part of check-in [66d247e62a] at 2017-12-24 18:52:35 on branch graphspell — [build][js] move JS language core extension to a dedicated folder (user: olr, size: 3870) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 | // regex if (RegExp.prototype.grammalecte === undefined) { RegExp.prototype.gl_exec2 = function (sText, aGroupsPos, aNegLookBefore=null) { let m; while ((m = this.exec(sText)) !== null) { // we have to iterate over sText here too // because first match doesn’t imply it’s a valid match according to negative lookbefore assertions, | > | 1 2 3 4 5 6 7 8 9 10 | // regex /*jslint esversion: 6*/ if (RegExp.prototype.grammalecte === undefined) { RegExp.prototype.gl_exec2 = function (sText, aGroupsPos, aNegLookBefore=null) { let m; while ((m = this.exec(sText)) !== null) { // we have to iterate over sText here too // because first match doesn’t imply it’s a valid match according to negative lookbefore assertions, |
︙ | ︙ |