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

Unified Diff: tests/compiler/dart2js/dart2js_resolver_test.dart

Issue 2294753002: Handle parts as input in resolver. (Closed)
Patch Set: Updated cf. comments. Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/compiler/dart2js/analyze_test_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/dart2js_resolver_test.dart
diff --git a/tests/compiler/dart2js/dart2js_resolver_test.dart b/tests/compiler/dart2js/dart2js_resolver_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c04da4fd4de45e949cbcb13a7ff0b767d2603f01
--- /dev/null
+++ b/tests/compiler/dart2js/dart2js_resolver_test.dart
@@ -0,0 +1,19 @@
+// Copyright (c) 2016, 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 dart2js.dart2js_resolver.test;
+
+import 'dart:io';
+import 'package:async_helper/async_helper.dart';
+import 'package:compiler/src/dart2js_resolver.dart' as resolver;
+import 'analyze_test_test.dart';
+
+main() {
+ asyncTest(() async {
+ List<Uri> uriList = computeInputUris();
+ await resolver.resolve(uriList,
+ packageRoot: Uri.base.resolve(Platform.packageRoot),
+ platformConfig: "lib/dart_shared.platform");
+ });
+}
« no previous file with comments | « tests/compiler/dart2js/analyze_test_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698