Home | History | Annotate | Download | only in src

Lines Matching refs:from_line

462   var from_line = IS_UNDEFINED(opt_from_line) ? this.line_offset
468 from_line -= this.line_offset;
470 if (from_line < 0) from_line = 0;
474 if (from_line >= this.lineCount() ||
476 from_line > to_line) {
481 var from_position = from_line == 0 ? 0 : line_ends[from_line - 1] + 1;
486 from_line + this.line_offset,
695 * from_line : line number for the first line in the slice
700 * in the slice are [from_line, to_line[. Likewise the characters in the slice
703 * @param {number} from_line
709 function SourceSlice(script, from_line, to_line, from_position, to_position) {
711 this.from_line = from_line;
730 $Array("script", "from_line", "to_line", "from_position", "to_position"),