| Index: sdk/lib/_internal/compiler/implementation/elements/modelx.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/elements/modelx.dart b/sdk/lib/_internal/compiler/implementation/elements/modelx.dart
|
| index fcd8691ac586a17276ae5af2052bf9f54e3e0e83..79ac960985f899fb366aeeb836c276506fc7c149 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/elements/modelx.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/elements/modelx.dart
|
| @@ -180,7 +180,7 @@ class ElementX implements Element {
|
| // For constructors, that doesn't work because they may have
|
| // named formed out of multiple tokens (named constructors) so
|
| // for those we search for the class name instead.
|
| - String needle = isConstructor() ? enclosingElement.name : name;
|
| + SourceString needle = isConstructor() ? enclosingElement.name : name;
|
| for (Token t = token; EOF_TOKEN != t.kind; t = t.next) {
|
| if (needle == t.value) return t;
|
| }
|
|
|