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

Unified Diff: sdk/lib/_internal/compiler/implementation/typechecker.dart

Issue 26291005: dart2js: The name of a library without a library declaration is the empty string. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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: sdk/lib/_internal/compiler/implementation/typechecker.dart
diff --git a/sdk/lib/_internal/compiler/implementation/typechecker.dart b/sdk/lib/_internal/compiler/implementation/typechecker.dart
index 2cc56efd9b0ea3a2ece6b4efb2e69d2d67192d89..60e421cf58da4ee201290d4bf992534d54dc8467 100644
--- a/sdk/lib/_internal/compiler/implementation/typechecker.dart
+++ b/sdk/lib/_internal/compiler/implementation/typechecker.dart
@@ -386,7 +386,7 @@ class TypeCheckerVisitor extends Visitor<DartType> {
node,
MessageKind.PRIVATE_ACCESS,
{'name': name,
- 'libraryName': element.getLibrary().getLibraryOrScriptName()});
+ 'libraryName': element.getLibrary().getLibraryName()});
}
}

Powered by Google App Engine
This is Rietveld 408576698