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

Unified Diff: pkg/compiler/lib/src/resolution/class_hierarchy.dart

Issue 3007043002: Align synthetic mixin names with fasta. (Closed)
Patch Set: Created 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/resolution/class_hierarchy.dart
diff --git a/pkg/compiler/lib/src/resolution/class_hierarchy.dart b/pkg/compiler/lib/src/resolution/class_hierarchy.dart
index 0d9b50cfa0dac064c6ac80c4bb704f652d22ce50..8bce3cae35d50e9e78fc7d7f3d5b2ff58bb4a483 100644
--- a/pkg/compiler/lib/src/resolution/class_hierarchy.dart
+++ b/pkg/compiler/lib/src/resolution/class_hierarchy.dart
@@ -447,7 +447,7 @@ class ClassResolverVisitor extends TypeDefinitionVisitor {
if (index != -1) {
name = name.substring(0, index);
}
- name = "$name&${mixin.name}$signature";
+ name = "_$name&${mixin.name}$signature";
mixinElement = mixinApplicationClasses[name];
if (mixinElement != null) return mixinElement.thisType;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698