Lines Matching refs:generated
24 <!-- START doctoc generated TOC please keep comment here to allow auto update -->
63 <!-- END doctoc generated TOC please keep comment here to allow auto update -->
152 generated: {
187 in the generated source.
208 * `file`: Optional. The generated filename this source map is associated with.
216 Compute the last column for each generated mapping. The last column is
247 Returns the original source, line, and column information for the generated
251 * `line`: The line number in the generated source. Line numbers in
256 * `column`: The column number in the generated source. Column numbers
294 Returns the generated line and column information for the original source,
308 * `line`: The line number in the generated source, or null. The line
311 * `column`: The column number in the generated source, or null. The
322 Returns all generated line and column information for the original source, line,
341 * `line`: The line number in the generated source, or null. The line
344 * `column`: The column number in the generated source, or null. The
402 generated line/column in this source map.
413 the mappings sorted by the generated file's line/column order or the
443 * `file`: The filename of the generated source that this source map is
455 file: "my-generated-javascript-file.js",
472 Add a single mapping from original source line and column to the generated
476 * `generated`: An object with the generated line and column positions.
488 generated: { line: 3, column: 456 }
531 Renders the source map being generated to a string.
535 …urces":["module-one.scm"],"names":[],"mappings":"...snip...","file":"my-generated-javascript-file.…
541 snippets of generated JavaScript source code, while maintaining the line and
544 use before outputting the generated JS and source map.
572 Creates a SourceNode from generated code and a SourceMapConsumer.
574 * `code`: The generated code
576 * `sourceMapConsumer` The SourceMap for the generated code
589 Add a chunk of generated JS to this source node.
591 * `chunk`: A string snippet of generated JS code, another instance of
602 Prepend a chunk of generated JS to this source node.
604 * `chunk`: A string snippet of generated JS code, another instance of
658 var a = new SourceNode(1, 2, "a.js", "generated from a");
660 var b = new SourceNode(1, 2, "b.js", "generated from b");
662 var c = new SourceNode(1, 2, "c.js", "generated from c");
724 SourceMapGenerator which contains all the mappings between the generated and