Differences From Artifact [d06151ccd7]:
- File gc_core/js/tokenizer.js — part of check-in [2fd7dc4dd5] at 2017-04-25 11:51:19 on branch trunk — commit 1 (user: olr, size: 2998) [annotate] [blame] [check-ins using]
To Artifact [4c307bc446]:
- File gc_core/js/tokenizer.js — part of check-in [c55ae247e7] at 2017-07-29 08:06:31 on branch webext — [core][js] test if <exports> exists (user: olr, size: 3044) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
| 68 69 70 71 72 73 74 | 
            }
            i += nCut;
            sText = sText.slice(nCut);
        }
    }
}
 | > > | > | 68 69 70 71 72 73 74 75 76 77 78 | 
            }
            i += nCut;
            sText = sText.slice(nCut);
        }
    }
}
if (typeof(exports) !== 'undefined') {
    exports.Tokenizer = Tokenizer;
}
 |