()
| 90160 | exit(); |
| 90161 | } |
| 90162 | function shouldCommitMapping() { |
| 90163 | return !hasLast |
| 90164 | || lastGeneratedLine !== pendingGeneratedLine |
| 90165 | || lastGeneratedCharacter !== pendingGeneratedCharacter |
| 90166 | || lastSourceIndex !== pendingSourceIndex |
| 90167 | || lastSourceLine !== pendingSourceLine |
| 90168 | || lastSourceCharacter !== pendingSourceCharacter |
| 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, |
no outgoing calls
no test coverage detected
searching dependent graphs…