Home | History | Annotate | Download | only in src

Lines Matching refs:from_line

493   var from_line = IS_UNDEFINED(opt_from_line) ? this.line_offset
499 from_line -= this.line_offset;
501 if (from_line < 0) from_line = 0;
505 if (from_line >= this.lineCount() ||
507 from_line > to_line) {
512 var from_position = from_line == 0 ? 0 : line_ends[from_line - 1] + 1;
517 from_line + this.line_offset,
727 * from_line : line number for the first line in the slice
732 * in the slice are [from_line, to_line[. Likewise the characters in the slice
735 * @param {number} from_line
741 function SourceSlice(script, from_line, to_line, from_position, to_position) {
743 this.from_line = from_line;
762 $Array("script", "from_line", "to_line", "from_position", "to_position"),