(source, pos)
| 115096 | /*nameIndex*/ undefined); |
| 115097 | } |
| 115098 | function emitSourcePos(source, pos) { |
| 115099 | if (source !== sourceMapSource) { |
| 115100 | var savedSourceMapSource = sourceMapSource; |
| 115101 | var savedSourceMapSourceIndex = sourceMapSourceIndex; |
| 115102 | setSourceMapSource(source); |
| 115103 | emitPos(pos); |
| 115104 | resetSourceMapSource(savedSourceMapSource, savedSourceMapSourceIndex); |
| 115105 | } |
| 115106 | else { |
| 115107 | emitPos(pos); |
| 115108 | } |
| 115109 | } |
| 115110 | /** |
| 115111 | * Emits a token of a node with possible leading and trailing source maps. |
| 115112 | * |
no test coverage detected
searching dependent graphs…