Home
last modified time | relevance | path

Searched refs:stringCharIterator (Results 1 – 1 of 1) sorted by relevance

/external/v8/tools/
DSourceMap.js253 var stringCharIterator = new WebInspector.SourceMap.StringCharIterator(map.mappings);
257 if (stringCharIterator.peek() === ",")
258 stringCharIterator.next();
260 while (stringCharIterator.peek() === ";") {
263 stringCharIterator.next();
265 if (!stringCharIterator.hasNext())
269 columnNumber += this._decodeVLQ(stringCharIterator);
270 if (this._isSeparator(stringCharIterator.peek())) {
275 var sourceIndexDelta = this._decodeVLQ(stringCharIterator);
280 sourceLineNumber += this._decodeVLQ(stringCharIterator);
[all …]