Overview
| Comment: | [core][js] echo function for debugging | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | core | comdic | 
| Files: | files | file ages | folders | 
| SHA3-256: | 
bcd8a483d574b89806b2b71366a4d070 | 
| User & Date: | olr on 2019-02-10 00:31:57 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 
   2019-02-12 
 | ||
| 19:58 | [fx] dictionaries manager: update check-in: fd372b5786 user: olr tags: fx, comdic | |
| 
   2019-02-10 
 | ||
| 00:31 | [core][js] echo function for debugging check-in: bcd8a483d5 user: olr tags: core, comdic | |
| 00:31 | [fr] fix JS positioning code and regex check-in: d3187b7cd8 user: olr tags: fr, comdic | |
Changes
Modified gc_core/js/lang_core/gc_engine.js from [8e4be3285b] to [65c6c687b8].
| ︙ | |||
40 41 42 43 44 45 46 47 48 49 50 51 52 53  | 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}",
 | 
| ︙ |