Home
last modified time | relevance | path

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

/external/v8/src/
Dmessages.js428 var to_line = IS_UNDEFINED(opt_to_line) ? this.line_offset + this.lineCount() : opt_to_line
432 to_line -= this.line_offset;
434 if (to_line > this.lineCount()) to_line = this.lineCount();
438 to_line < 0 ||
439 from_line > to_line) {
445 var to_position = to_line == 0 ? 0 : line_ends[to_line - 1] + 1;
448 return new SourceSlice(this, from_line + this.line_offset, to_line + this.line_offset,
634 function SourceSlice(script, from_line, to_line, from_position, to_position) { argument
637 this.to_line = to_line;
Ddebug-debugger.js2132 var to_line;
2137 to_line = request.arguments.toLine;
2155 var slice = script.sourceSlice(from_line, to_line);
2162 response.body.toLine = slice.to_line;
/external/v8/test/mjsunit/
Ddebug-sourceslice.js65 assertEquals(n + slice_size, slice.to_line);