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

Unified Diff: sdk/lib/_internal/compiler/implementation/js_backend/namer.dart

Issue 11415287: noSuchMethod generated for super calls (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 8 years 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/js_backend/namer.dart
diff --git a/sdk/lib/_internal/compiler/implementation/js_backend/namer.dart b/sdk/lib/_internal/compiler/implementation/js_backend/namer.dart
index 246724fefe076b48974778f0a50f0dbb465ccbe5..b2f9f5c9c8c1d9989a0e82e9b9a45bf0fd048607 100644
--- a/sdk/lib/_internal/compiler/implementation/js_backend/namer.dart
+++ b/sdk/lib/_internal/compiler/implementation/js_backend/namer.dart
@@ -211,7 +211,6 @@ class Namer {
* Returns the internal name used for an invocation mirror of this selector.
*/
String invocationMirrorInternalName(Selector selector) {
- String nameString = selector.name.slowToString();
if (selector.isGetter()) {
return getterName(selector.library, selector.name);
} else if (selector.isSetter()) {

Powered by Google App Engine
This is Rietveld 408576698