| Index: lib/compiler/implementation/ssa/nodes.dart
|
| diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
|
| index e5e06983f99c74df039630fa0b688861b906195b..eabeb7c2400c4fe9c2cac3bcd48c44c8a6f78bb5 100644
|
| --- a/lib/compiler/implementation/ssa/nodes.dart
|
| +++ b/lib/compiler/implementation/ssa/nodes.dart
|
| @@ -755,7 +755,10 @@ class HNonPrimitiveType extends HType {
|
| }
|
|
|
| String toString() => type.toString();
|
| - Element lookupMember(SourceString name) => type.element.lookupMember(name);
|
| + Element lookupMember(SourceString name) {
|
| + ClassElement classElement = type.element;
|
| + classElement.lookupMember(name);
|
| + }
|
| }
|
|
|
| class HInstruction implements Hashable {
|
|
|