Lines Matching refs:original
157 original: {
186 for information about the original file positions by giving it a file position
197 * `sources`: An array of URLs to the original source files.
204 * `sourcesContent`: Optional. An array of contents of the original source files.
247 Returns the original source, line, and column information for the generated
267 * `source`: The original source file, or null if this information is not
270 * `line`: The line number in the original source, or null if this information is
273 * `column`: The column number in the original source, or null if this
276 * `name`: The original identifier, or null if this information is not available.
294 Returns the generated line and column information for the original source,
298 * `source`: The filename of the original source.
300 * `line`: The line number in the original source. The line number is
303 * `column`: The column number in the original source. The column
322 Returns all generated line and column information for the original source, line,
331 * `source`: The filename of the original source.
333 * `line`: The line number in the original source. The line number is
336 * `column`: Optional. The column number in the original source. The
378 Returns the original source content for the source provided. The only
379 argument is the URL of the original source file.
401 Iterate over each mapping between an original source/line/column and a
414 original's source/line/column order, respectively. Defaults to
472 Add a single mapping from original source line and column to the generated
478 * `original`: An object with the original line and column positions.
480 * `source`: The original source file (relative to the sourceRoot).
482 * `name`: An optional original token name for this mapping.
487 original: { line: 128, column: 0 },
494 Set the source content for an original source file.
496 * `sourceFile` the URL of the original source file.
542 column information associated between those snippets and the original source
548 * `line`: The original line number associated with this source node, or null if
549 it isn't associated with an original line. The line number is 1-based.
551 * `column`: The original column number associated with this source node, or null
552 if it isn't associated with an original column. The column number
555 * `source`: The original source's filename; null if no filename is provided.
560 * `name`: Optional. The original identifier.
629 the its original associated source's line/column location.
659 a.setSourceContent("a.js", "original a");
661 b.setSourceContent("b.js", "original b");
663 c.setSourceContent("c.js", "original c");
667 // WALK: a.js : original a
668 // WALK: b.js : original b
669 // WALK: c.js : original c
725 original sources.