Differences From Artifact [9add95291e]:
- File gc_core/js/lang_core/gc_functions.js — part of check-in [1975bd1394] at 2020-08-19 15:53:49 on branch trunk — [core][js] code clarification: separate specific inner functions from gc engine core (user: olr, size: 15263) [annotate] [blame] [check-ins using]
To Artifact [2b92bbcf40]:
- File gc_core/js/lang_core/gc_functions.js — part of check-in [a786c60bab] at 2020-11-25 19:54:15 on branch trunk — [core][js] function g_meta() (user: olr, size: 15337) [annotate] [blame] [check-ins using]
| ︙ | |||
| 318 319 320 321 322 323 324 325 326 327 328 329 330 331 | 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | + + + + | 
    }
    return false;
}
function g_tag (oToken, sTag) {
    return oToken.hasOwnProperty("aTags") && oToken["aTags"].has(sTag);
}
function g_meta (oToken, sType) {
    return oToken["sType"] == sType;
}
function g_space_between_tokens (oToken1, oToken2, nMin, nMax=null) {
    let nSpace = oToken2["nStart"] - oToken1["nEnd"]
    if (nSpace < nMin) {
        return false;
    }
    if (nMax !== null && nSpace > nMax) {
 | 
| ︙ |