Lines Matching full:slice
483 * Get a slice of source code from the script. The boundaries for the slice is
485 * @param {number} opt_from_line The first line (zero bound) in the slice.
487 * @param {number} opt_to_column The last line (zero bound) in the slice (non
489 * @return {SourceSlice} The source slice or null of the parameters where
515 // Return a source slice with line numbers re-adjusted to the resource.
652 * Restrict source location start and end positions to make the source slice
724 * Class for a source slice. A source slice is a part of a script source with
727 * from_line : line number for the first line in the slice
728 * to_line : source line number for the last line in the slice
729 * from_position : position of the first character in the slice
730 * to_position : position of the last character in the slice
731 * The to_line and to_position are not included in the slice, that is the lines
732 * in the slice are [from_line, to_line[. Likewise the characters in the slice
734 * @param {Script} script The Script object for the source slice
751 * @return {String} Source text for this slice. The last line will include