68a26315ef
tools. Review URL: https://codereview.chromium.org//12207008 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@20300 260f80e4-7a28-3924-810f-c04153c831b5
26 lines
906 B
Dart
26 lines
906 B
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
/// Source maps library.
|
|
///
|
|
/// Create a source map using [SourceMapBuilder]. For example:
|
|
/// var json = (new SourceMapBuilder()
|
|
/// ..add(inputSpan1, outputSpan1)
|
|
/// ..add(inputSpan2, outputSpan2)
|
|
/// ..add(inputSpan3, outputSpan3)
|
|
/// .toJson(outputFile);
|
|
///
|
|
/// Use the [Span] and [SourceFile] classes to specify span locations.
|
|
///
|
|
/// Parse a source map using [parse], and call `spanFor` on the returned mapping
|
|
/// object. For example:
|
|
/// var mapping = parse(json);
|
|
/// mapping.spanFor(outputSpan1.line, outputSpan1.column)
|
|
library source_maps;
|
|
|
|
export "builder.dart";
|
|
export "parser.dart";
|
|
export "printer.dart";
|
|
export "span.dart";
|