(string, description, startIndex, endIndex)
| 14847 | }; |
| 14848 | |
| 14849 | var StringSourceRange = function(string, description, startIndex, endIndex) { |
| 14850 | this._string = string; |
| 14851 | this._description = description; |
| 14852 | this._startIndex = startIndex; |
| 14853 | this._endIndex = endIndex; |
| 14854 | }; |
| 14855 | |
| 14856 | StringSourceRange.prototype.to = function(otherRange) { |
| 14857 | // TODO: Assert that tokens are the same across both iterators |
nothing calls this directly
no outgoing calls
no test coverage detected