(startToken)
| 1509 | } |
| 1510 | |
| 1511 | function WrappingSourceLocation(startToken) { |
| 1512 | this.start = { |
| 1513 | line: startToken.lineNumber, |
| 1514 | column: startToken.start - startToken.lineStart |
| 1515 | }; |
| 1516 | this.end = null; |
| 1517 | } |
| 1518 | |
| 1519 | function Node() { |
| 1520 | if (extra.range) { |
nothing calls this directly
no outgoing calls
no test coverage detected