Differences From Artifact [8e4be3285b]:
- File gc_core/js/lang_core/gc_engine.js — part of check-in [86c9c40cab] at 2019-01-02 12:56:09 on branch trunk — [core] gc engine: new operator (@) for regex text processor (user: olr, size: 59458) [annotate] [blame] [check-ins using] [more...]
To Artifact [65c6c687b8]:
- File gc_core/js/lang_core/gc_engine.js — part of check-in [bcd8a483d5] at 2019-02-10 00:31:57 on branch comdic — [core][js] echo function for debugging (user: olr, size: 59518) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
let _sAppContext = ""; // what software is running
let _dOptions = null;
let _dOptionsColors = null;
let _oSpellChecker = null;
let _oTokenizer = null;
let _aIgnoredRules = new Set();
var gc_engine = {
//// Informations
lang: "${lang}",
| > > > > > | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
let _sAppContext = ""; // what software is running
let _dOptions = null;
let _dOptionsColors = null;
let _oSpellChecker = null;
let _oTokenizer = null;
let _aIgnoredRules = new Set();
function echo (x) {
console.log(x);
return true;
}
var gc_engine = {
//// Informations
lang: "${lang}",
|
| ︙ | ︙ |