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

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

Issue 16854005: First pass at build dependency graph for barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Handle unprovided sources and errors a bit better. Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/barback/lib/src/asset.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/barback/lib/barback.dart
diff --git a/tests/compiler/dart2js_extra/deferred/deferred_semantics_test.dart b/pkg/barback/lib/barback.dart
similarity index 51%
copy from tests/compiler/dart2js_extra/deferred/deferred_semantics_test.dart
copy to pkg/barback/lib/barback.dart
index 140faca3f8479b47e297b51ee4201a0a9f928b31..62fdc145fd020d5ae1b24506121b3595228b224a 100644
--- a/tests/compiler/dart2js_extra/deferred/deferred_semantics_test.dart
+++ b/pkg/barback/lib/barback.dart
@@ -2,14 +2,14 @@
// 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.
-// Test that deferred loading requires same library names.
+library barback;
import 'dart:async';
-
-@lazy /// 01: compile-time error
-import 'deferred_function_library.dart';
-
-const lazy = const DeferredLibrary('fisk');
-
-main() {
-}
+import 'dart:io';
+
+export 'src/asset.dart';
+export 'src/asset_id.dart';
+export 'src/asset_provider.dart';
+export 'src/errors.dart';
+export 'src/transform.dart' show Transform;
+export 'src/transformer.dart';
« no previous file with comments | « no previous file | pkg/barback/lib/src/asset.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698