Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(743)

Side by Side Diff: source_maps/lib/source_maps.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source_maps/lib/refactor.dart ('k') | source_maps/lib/src/source_map_span.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 /// Library to create and parse source maps.
6 ///
7 /// Create a source map using [SourceMapBuilder]. For example:
8 /// var json = (new SourceMapBuilder()
9 /// ..add(inputSpan1, outputSpan1)
10 /// ..add(inputSpan2, outputSpan2)
11 /// ..add(inputSpan3, outputSpan3)
12 /// .toJson(outputFile);
13 ///
14 /// Use the source_span package's [SourceSpan] and [SourceFile] classes to
15 /// specify span locations.
16 ///
17 /// Parse a source map using [parse], and call `spanFor` on the returned mapping
18 /// object. For example:
19 /// var mapping = parse(json);
20 /// mapping.spanFor(outputSpan1.line, outputSpan1.column)
21 ///
22 /// ## Getting the code ##
23 ///
24 /// This library is distributed as a [pub][] package. To install this package,
25 /// add the following to your `pubspec.yaml` file:
26 ///
27 /// dependencies:
28 /// source_maps: any
29 ///
30 /// After you run `pub install`, you should be able to access this library by
31 /// importing `package:source_maps/source_maps.dart`.
32 ///
33 /// For more information, see the
34 /// [source_maps package on pub.dartlang.org][pkg].
35 ///
36 /// [pub]: http://pub.dartlang.org
37 /// [pkg]: http://pub.dartlang.org/packages/source_maps
38 library source_maps;
39
40 export "builder.dart";
41 export "parser.dart";
42 export "printer.dart";
43 export "refactor.dart";
44 export 'src/source_map_span.dart';
OLDNEW
« no previous file with comments | « source_maps/lib/refactor.dart ('k') | source_maps/lib/src/source_map_span.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698