Lines Matching refs:bPos
251 function tryBacktrackAddStarExportBinding (bPos) { argument
252 while (source.charCodeAt(bPos) === 32/* */ && bPos >= 0)
253 bPos--;
254 if (source.charCodeAt(bPos) === 61/*=*/) {
255 bPos--;
256 while (source.charCodeAt(bPos) === 32/* */ && bPos >= 0)
257 bPos--;
259 const id_end = bPos;
261 while ((codePoint = codePointAtLast(bPos)) && bPos >= 0) {
267 bPos -= codePointLen(codePoint);
269 if (identifierStart && source.charCodeAt(bPos) === 32/* */) {
270 const starExportId = source.slice(bPos + 1, id_end + 1);
271 while (source.charCodeAt(bPos) === 32/* */ && bPos >= 0)
272 bPos--;
273 switch (source.charCodeAt(bPos)) {
275 if (!source.startsWith('va', bPos - 2))
279 if (!source.startsWith('le', bPos - 2) && !source.startsWith('cons', bPos - 4))
1144 function codePointAtLast (bPos) { argument
1146 const ch = source.charCodeAt(bPos);
1148 return (((source.charCodeAt(bPos - 1) & 0x3FF) << 10) | (ch & 0x3FF)) + 0x10000;