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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/resolution/members.dart

Issue 13998030: Update status for minified and fix a type warning (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 8 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 | « dart/pkg/pkg.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/_internal/compiler/implementation/resolution/members.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/resolution/members.dart b/dart/sdk/lib/_internal/compiler/implementation/resolution/members.dart
index 6b6d9d4569ddc47c31a514f208731df2bbe46012..c8901236e07895d9c8ca9fe031d207ec02619afe 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/resolution/members.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/resolution/members.dart
@@ -2592,7 +2592,9 @@ class ResolverVisitor extends CommonResolverVisitor<Element> {
compiler.reportErrorCode(argumentNode, MessageKind.STRING_EXPECTED,
{'type': type});
} else {
- validateSymbol(argumentNode, name.toDartString().slowToString());
+ StringConstant stringConstant = name;
+ validateSymbol(argumentNode,
+ stringConstant.toDartString().slowToString());
}
}
« no previous file with comments | « dart/pkg/pkg.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698