Lines Matching refs:startsWith
112 if (source.startsWith('mport', pos + 1) && keywordStart(pos))
123 …if (source.startsWith('interopRequireWildcard', pos + 1) && (keywordStart(pos) || source.charCodeA…
134 …else if (source.startsWith('_export', pos + 1) && (keywordStart(pos) || source.charCodeAt(pos - 1)…
136 if (source.startsWith('Star', pos))
151 if (source.startsWith('xport', pos + 1) && keywordStart(pos)) {
159 …if (keywordStart(pos) && source.startsWith('lass', pos + 1) && isBrOrWs(source.charCodeAt(pos + 5)…
163 if (source.startsWith('odule', pos + 1) && keywordStart(pos))
167 if (source.startsWith('bject', pos + 1) && keywordStart(pos))
275 if (!source.startsWith('va', bPos - 2))
279 if (!source.startsWith('le', bPos - 2) && !source.startsWith('cons', bPos - 4))
292 if (ch !== 79/*O*/ || !source.startsWith('bject', pos + 1)) return false;
299 if (!source.startsWith('rototype', pos + 1)) return false;
306 if (ch !== 104/*h*/ || !source.startsWith('asOwnProperty', pos + 1)) return false;
312 if (ch !== 99/*c*/ || !source.startsWith('all', pos + 1)) return false;
323 if (!source.startsWith(it_id, pos)) return false;
338 if (ch === 100/*d*/ && source.startsWith('efineProperty', pos + 1)) {
364 if (!source.startsWith('numerable', pos + 1)) break;
370 if (ch !== 116/*t*/ || !source.startsWith('rue', pos + 1)) break;
378 if (!source.startsWith('alue', pos + 1)) break;
387 if (!source.startsWith('et', pos + 1)) break;
394 if (!source.startsWith('unction', pos + 1)) break;
411 if (!source.startsWith('eturn', pos + 1)) break;
457 else if (keys && ch === 107/*k*/ && source.startsWith('eys', pos + 1)) {
476 if (ch !== 102/*f*/ || !source.startsWith('orEach', pos + 1)) break;
483 if (ch !== 102/*f*/ || !source.startsWith('unction', pos + 1)) break;
505 if (!source.startsWith(it_id, pos)) break;
510 if (!source.startsWith('==', pos + 1)) break;
515 if (!source.startsWith('default', pos + 1)) break;
532 if (!source.startsWith('__esModule', pos + 1)) break;
541 if (ch !== 114/*r*/ || !source.startsWith('eturn', pos + 1)) break;
562 if (ch !== 114/*r*/ || !source.startsWith('eturn', pos + 1)) break;
585 if (!source.startsWith(it_id, pos)) break;
588 if (ch !== 105/*i*/ || !source.startsWith('n ', pos + 1)) break;
601 if (!source.startsWith(it_id, pos)) break;
607 if (ch !== 61/*=*/ || !source.startsWith('==', pos + 1)) break;
610 if (!source.startsWith(id, pos)) break;
616 if (!source.startsWith(it_id, pos)) break;
625 if (ch !== 114/*r*/ || !source.startsWith('eturn', pos + 1)) break;
636 if (!source.startsWith('==', pos + 1)) break;
641 if (!source.startsWith('default', pos + 1)) break;
654 if (ch === 79/*O*/ && source.startsWith('bject', pos + 1) && source[pos + 6] === '.') {
662 if (ch !== 104/*h*/ || !source.startsWith('asOwnProperty', pos + 1)) break;
668 if (!source.startsWith(it_id, pos)) break;
723 if (ch !== 100/*d*/ || !source.startsWith('efineProperty', pos + 1)) break;
734 if (!source.startsWith(it_id, pos)) break;
743 if (ch !== 101/*e*/ || !source.startsWith('numerable', pos + 1)) break;
749 if (ch !== 116/*t*/ && !source.startsWith('rue', pos + 1)) break;
755 if (ch !== 103/*g*/ || !source.startsWith('et', pos + 1)) break;
762 if (!source.startsWith('unction', pos + 1)) break;
778 if (ch !== 114/*r*/ || !source.startsWith('eturn', pos + 1)) break;
781 if (!source.startsWith(id, pos)) break;
787 if (!source.startsWith(it_id, pos)) break;
837 if (ch === 109/*m*/ && source.startsWith('odule', pos + 1)) {
847 if (ch === 101/*e*/ && source.startsWith('xports', pos + 1)) {
864 if (ch === 101/*e*/ && source.startsWith('xports', pos + 1)) {
934 if (source.startsWith('equire', pos + 1)) {
985 else if (ch === 46/*.*/ && source.startsWith('..', pos + 1)) {
1313 …return source.startsWith(match, pos - match.length + 1) && (pos === 0 || isBrOrWsOrPunctuatorNotDo…
1395 return source.charCodeAt(curPos) === 101/*e*/ && source.startsWith('whil', curPos - 4) ||
1396 source.charCodeAt(curPos) === 114/*r*/ && source.startsWith('fo', curPos - 2) ||
1426 return source.startsWith('catc', curPos - 4);
1428 return source.startsWith('finall', curPos - 6);
1430 return source.startsWith('els', curPos - 3);