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

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

Issue 22396004: Make observable transform a barback transform. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « pkg/source_maps/lib/refactor.dart ('k') | pkg/source_maps/test/printer_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /// Library to create and parse source maps. 5 /// Library to create and parse source maps.
6 /// 6 ///
7 /// Create a source map using [SourceMapBuilder]. For example: 7 /// Create a source map using [SourceMapBuilder]. For example:
8 /// var json = (new SourceMapBuilder() 8 /// var json = (new SourceMapBuilder()
9 /// ..add(inputSpan1, outputSpan1) 9 /// ..add(inputSpan1, outputSpan1)
10 /// ..add(inputSpan2, outputSpan2) 10 /// ..add(inputSpan2, outputSpan2)
(...skipping 21 matching lines...) Expand all
32 /// For more information, see the 32 /// For more information, see the
33 /// [source_maps package on pub.dartlang.org][pkg]. 33 /// [source_maps package on pub.dartlang.org][pkg].
34 /// 34 ///
35 /// [pub]: http://pub.dartlang.org 35 /// [pub]: http://pub.dartlang.org
36 /// [pkg]: http://pub.dartlang.org/packages/source_maps 36 /// [pkg]: http://pub.dartlang.org/packages/source_maps
37 library source_maps; 37 library source_maps;
38 38
39 export "builder.dart"; 39 export "builder.dart";
40 export "parser.dart"; 40 export "parser.dart";
41 export "printer.dart"; 41 export "printer.dart";
42 export "refactor.dart";
42 export "span.dart"; 43 export "span.dart";
OLDNEW
« no previous file with comments | « pkg/source_maps/lib/refactor.dart ('k') | pkg/source_maps/test/printer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698