Differences From Artifact [5c503d2a3c]:
- File gc_core/js/lang_core/gc_engine.js — part of check-in [977fd9b488] at 2018-10-11 15:39:24 on branch nodejs — [js] Revert syntax change (oubli) (user: IllusionPerdu, size: 59247) [annotate] [blame] [check-ins using] [more...]
To Artifact [3a1daff577]:
- File gc_core/js/lang_core/gc_engine.js — part of check-in [fc3446bfc2] at 2018-10-21 14:58:01 on branch nodejs — [js] Add getIgnoreRules (user: IllusionPerdu, size: 59339) [annotate] [blame] [check-ins using]
| ︙ | |||
89 90 91 92 93 94 95 96 97 98 99 100 101 102 | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | + + + + |
getRules: function (bParagraph) {
if (!bParagraph) {
return gc_rules.lSentenceRules;
}
return gc_rules.lParagraphRules;
},
getIgnoreRules: function (bParagraph) {
return gc_rules._aIgnoredRules;
},
ignoreRule: function (sRuleId) {
_aIgnoredRules.add(sRuleId);
},
resetIgnoreRules: function () {
_aIgnoredRules.clear();
|
| ︙ |