Home | History | Annotate | Download | only in js

Lines Matching refs:sourceCode

753    * Apply the given language handler to sourceCode and add the resulting
755 * @param {number} basePos the index of sourceCode within the chunk of source
758 function appendDecorations(basePos, sourceCode, langHandler, out) {
759 if (!sourceCode) { return; }
761 source: sourceCode,
772 * where index_n is an index into the sourceCode, and style_n is a style
774 * all characters in sourceCode[index_n-1:index_n].
851 * sourceCode.
855 var sourceCode = job.source, basePos = job.basePos;
862 var pos = 0; // index into sourceCode
863 var tokens = sourceCode.match(tokenizer) || [];