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

Unified Diff: pkg/source_maps/lib/source_maps.dart

Issue 814113004: Pull args, intl, logging, shelf, and source_maps out of the SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also csslib. Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/source_maps/lib/refactor.dart ('k') | pkg/source_maps/lib/src/source_map_span.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/source_maps/lib/source_maps.dart
diff --git a/pkg/source_maps/lib/source_maps.dart b/pkg/source_maps/lib/source_maps.dart
deleted file mode 100644
index 95319034111f615fdbcf022ca1ab5db26a91a489..0000000000000000000000000000000000000000
--- a/pkg/source_maps/lib/source_maps.dart
+++ /dev/null
@@ -1,44 +0,0 @@
-// 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.
-
-/// Library to create and parse source maps.
-///
-/// 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 source_span package's [SourceSpan] 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)
-///
-/// ## Getting the code ##
-///
-/// This library is distributed as a [pub][] package. To install this package,
-/// add the following to your `pubspec.yaml` file:
-///
-/// dependencies:
-/// source_maps: any
-///
-/// After you run `pub install`, you should be able to access this library by
-/// importing `package:source_maps/source_maps.dart`.
-///
-/// For more information, see the
-/// [source_maps package on pub.dartlang.org][pkg].
-///
-/// [pub]: http://pub.dartlang.org
-/// [pkg]: http://pub.dartlang.org/packages/source_maps
-library source_maps;
-
-export "builder.dart";
-export "parser.dart";
-export "printer.dart";
-export "refactor.dart";
-export 'src/source_map_span.dart';
« no previous file with comments | « pkg/source_maps/lib/refactor.dart ('k') | pkg/source_maps/lib/src/source_map_span.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698