* Given a pair of tokens (this and endToken), compute a `Token` encompassing * the whole input range enclosed by these two.
(endToken, // last token of the range, inclusive text)
| 70 | |
| 71 | |
| 72 | range(endToken, // last token of the range, inclusive |
| 73 | text) // the text of the newly constructed token |
| 74 | { |
| 75 | return new Token(text, SourceLocation.range(this, endToken)); |
| 76 | } |
| 77 | |
| 78 | } |
| 79 |
no outgoing calls
no test coverage detected