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

Unified Diff: pkg/compiler/lib/src/typechecker.dart

Issue 1335983004: Add ImportElement and ExportElement (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments. Created 5 years, 3 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/compiler/lib/src/tree/unparser.dart ('k') | pkg/compiler/lib/src/use_unused_api.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/typechecker.dart
diff --git a/pkg/compiler/lib/src/typechecker.dart b/pkg/compiler/lib/src/typechecker.dart
index 6e1e6f43c5094876127faeecb71b381da746923b..ad30f6dab674f75ec3fbdd66c83852c6f91a9c30 100644
--- a/pkg/compiler/lib/src/typechecker.dart
+++ b/pkg/compiler/lib/src/typechecker.dart
@@ -738,7 +738,7 @@ class TypeCheckerVisitor extends Visitor<DartType> {
node,
MessageKind.PRIVATE_ACCESS,
{'name': name,
- 'libraryName': element.library.getLibraryOrScriptName()});
+ 'libraryName': element.library.libraryOrScriptName});
}
}
@@ -832,7 +832,7 @@ class TypeCheckerVisitor extends Visitor<DartType> {
node,
MessageKind.PRIVATE_ACCESS,
{'name': name,
- 'libraryName': privateName.library.getLibraryOrScriptName()},
+ 'libraryName': privateName.library.libraryOrScriptName},
isHint: isHint);
foundPrivateMember = true;
}
« no previous file with comments | « pkg/compiler/lib/src/tree/unparser.dart ('k') | pkg/compiler/lib/src/use_unused_api.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698