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

Unified Diff: pkg/code_transformers/lib/src/dart_sdk.dart

Issue 447603002: patch from issue 428303004 Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
Index: pkg/code_transformers/lib/src/dart_sdk.dart
diff --git a/pkg/code_transformers/lib/src/dart_sdk.dart b/pkg/code_transformers/lib/src/dart_sdk.dart
index 3438218d514ec87f7fc3656f941ace7b4899b71d..bdef955c70777e0a83a6f091e8fcd2ade95add17 100644
--- a/pkg/code_transformers/lib/src/dart_sdk.dart
+++ b/pkg/code_transformers/lib/src/dart_sdk.dart
@@ -108,11 +108,7 @@ class DartSourceProxy implements UriAnnotatedSource {
return new DartSourceProxy(source, uri);
}
- Source resolveRelative(Uri relativeUri) {
- // Assume that the type can be accessed via this URI, since these
- // should only be parts for dart core files.
- return wrap(_proxy.resolveRelative(relativeUri), uri);
- }
+ Uri resolveRelative(Uri relativeUri) => _proxy.resolveRelative(relativeUri);
bool exists() => _proxy.exists();
@@ -181,6 +177,11 @@ class MockDartSdk implements DartSdk {
}
return src;
}
+
+ @override
+ Source fromFileUri(Uri uri) {
+ throw new UnsupportedError('MockDartSdk.fromFileUri');
+ }
}
class _MockSdkSource implements UriAnnotatedSource {
@@ -209,6 +210,6 @@ class _MockSdkSource implements UriAnnotatedSource {
bool get isInSystemLibrary => true;
- Source resolveRelative(Uri relativeUri) =>
+ Uri resolveRelative(Uri relativeUri) =>
throw new UnsupportedError('not expecting relative urls in dart: mocks');
}
« no previous file with comments | « pkg/analyzer/test/source/package_map_resolver_test.dart ('k') | pkg/code_transformers/lib/src/resolver_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698