Differences From Artifact [ebc9cfd90d]:
- File gc_core/js/jsex_regex.js — part of check-in [bfd183b930] at 2017-07-31 05:41:46 on branch trunk — [core][js] catch error in Map (user: olr, size: 3714) [annotate] [blame] [check-ins using]
To Artifact [b8b02d05dd]:
- File gc_core/js/jsex_regex.js — part of check-in [6eb67129ef] at 2017-07-31 06:52:26 on branch trunk — [core][js] log error with helpers (user: olr, size: 3841) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
72 73 74 75 76 77 78 |
m.start.push(iPos);
m.end.push(iPos + subm.length);
}
}
}
}
catch (e) {
| > > > | > | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
m.start.push(iPos);
m.end.push(iPos + subm.length);
}
}
}
}
catch (e) {
if (typeof(helpers) !== "undefined") {
helpers.logerror(e);
} else {
console.error(e);
}
}
return m;
}
RegExp.prototype.grammalecte = true;
}
|