(charCode)
| 90169 | || lastNameIndex !== pendingNameIndex; |
| 90170 | } |
| 90171 | function appendMappingCharCode(charCode) { |
| 90172 | mappingCharCodes.push(charCode); |
| 90173 | // String.fromCharCode accepts its arguments on the stack, so we have to chunk the input, |
| 90174 | // otherwise we can get stack overflows for large source maps |
| 90175 | if (mappingCharCodes.length >= 1024) { |
| 90176 | flushMappingBuffer(); |
| 90177 | } |
| 90178 | } |
| 90179 | function commitPendingMapping() { |
| 90180 | if (!hasPending || !shouldCommitMapping()) { |
| 90181 | return; |
no test coverage detected
searching dependent graphs…