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

Unified Diff: pkg/analyzer/lib/src/generated/source.dart

Issue 189803004: Translate private Java members to private Dart members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks Created 6 years, 9 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 | « pkg/analyzer/lib/src/generated/sdk_io.dart ('k') | pkg/analyzer/lib/src/generated/source_io.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/source.dart
diff --git a/pkg/analyzer/lib/src/generated/source.dart b/pkg/analyzer/lib/src/generated/source.dart
index 3a2cf31581b18237534f61c71b02bc9ed9d30d09..74ae77daaf981675489dbe2a9edae7cfbc5fe032 100644
--- a/pkg/analyzer/lib/src/generated/source.dart
+++ b/pkg/analyzer/lib/src/generated/source.dart
@@ -93,7 +93,7 @@ class SourceFactory {
try {
Uri uri = parseUriWithException(absoluteUri);
if (uri.isAbsolute) {
- return internalResolveUri(null, uri);
+ return _internalResolveUri(null, uri);
}
} on URISyntaxException catch (exception) {
}
@@ -171,7 +171,7 @@ class SourceFactory {
}
try {
// Force the creation of an escaped URI to deal with spaces, etc.
- return internalResolveUri(containingSource, parseUriWithException(containedUri));
+ return _internalResolveUri(containingSource, parseUriWithException(containedUri));
} on URISyntaxException catch (exception) {
return null;
}
@@ -212,7 +212,7 @@ class SourceFactory {
* @param containedUri the (possibly relative) URI to be resolved against the containing source
* @return the source representing the contained URI
*/
- Source internalResolveUri(Source containingSource, Uri containedUri) {
+ Source _internalResolveUri(Source containingSource, Uri containedUri) {
if (containedUri.isAbsolute) {
for (UriResolver resolver in _resolvers) {
Source result = resolver.resolveAbsolute(containedUri);
« no previous file with comments | « pkg/analyzer/lib/src/generated/sdk_io.dart ('k') | pkg/analyzer/lib/src/generated/source_io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698