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

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

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final cleanup Created 7 years, 7 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 | « sdk/lib/uri/uri_sources.gypi ('k') | tests/compiler/dart2js/analyze_only_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/analyze_api_test.dart
diff --git a/tests/compiler/dart2js/analyze_api_test.dart b/tests/compiler/dart2js/analyze_api_test.dart
index 402a377101d234dfa9304335c5a9f97b14b4a74e..a4cca28806ab5f6825a35ad9b8f98de88827cca9 100644
--- a/tests/compiler/dart2js/analyze_api_test.dart
+++ b/tests/compiler/dart2js/analyze_api_test.dart
@@ -5,7 +5,6 @@
library analyze_api;
import "package:expect/expect.dart";
-import 'dart:uri';
import '../../../sdk/lib/_internal/libraries.dart';
import 'analyze_helper.dart';
@@ -33,7 +32,7 @@ void main() {
var uriList = new List<Uri>();
LIBRARIES.forEach((String name, LibraryInfo info) {
if (info.documented) {
- uriList.add(new Uri.fromComponents(scheme: 'dart', path: name));
+ uriList.add(new Uri(scheme: 'dart', path: name));
}
});
analyze(uriList, WHITE_LIST);
« no previous file with comments | « sdk/lib/uri/uri_sources.gypi ('k') | tests/compiler/dart2js/analyze_only_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698