Home
last modified time | relevance | path

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

/external/v8/src/
Dmessages.js376 var to_line = IS_UNDEFINED(opt_to_line) ? this.line_offset + this.lineCount() : opt_to_line
380 to_line -= this.line_offset;
382 if (to_line > this.lineCount()) to_line = this.lineCount();
386 to_line < 0 ||
387 from_line > to_line) {
393 var to_position = to_line == 0 ? 0 : line_ends[to_line - 1] + 1;
396 return new SourceSlice(this, from_line + this.line_offset, to_line + this.line_offset,
544 function SourceSlice(script, from_line, to_line, from_position, to_position) { argument
547 this.to_line = to_line;
Ddebug-debugger.js1820 var to_line;
1825 to_line = request.arguments.toLine;
1843 var slice = script.sourceSlice(from_line, to_line);
1850 response.body.toLine = slice.to_line;
/external/v8/test/mjsunit/
Ddebug-sourceslice.js65 assertEquals(n + slice_size, slice.to_line);