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

Unified Diff: tests/compiler/dart2js_native/internal_library_test.dart

Issue 11967010: Internal libraries supported. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update MockCompiler Created 7 years, 11 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
Index: tests/compiler/dart2js_native/internal_library_test.dart
diff --git a/sdk/lib/chrome/dartium/chrome_dartium.dart b/tests/compiler/dart2js_native/internal_library_test.dart
similarity index 57%
copy from sdk/lib/chrome/dartium/chrome_dartium.dart
copy to tests/compiler/dart2js_native/internal_library_test.dart
index c2286553e46c7790c0c932cfb76c98b6266b81d3..d42f826901ce08c51c6b10ebf4d3431b0743d7e7 100644
--- a/sdk/lib/chrome/dartium/chrome_dartium.dart
+++ b/tests/compiler/dart2js_native/internal_library_test.dart
@@ -1,9 +1,12 @@
-library chrome;
-
// 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.
-// DO NOT EDIT
-// Auto-generated dart:chrome library.
+// Test that a private library can be accessed from libraries in this special
+// test folder.
+
+import 'dart:_isolate_helper';
+void main() {
+ print(lazyPort);
+}

Powered by Google App Engine
This is Rietveld 408576698