| Index: sdk/lib/_internal/compiler/implementation/inferrer/type_graph_nodes.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/inferrer/type_graph_nodes.dart (revision 31270)
|
| +++ sdk/lib/_internal/compiler/implementation/inferrer/type_graph_nodes.dart (working copy)
|
| @@ -388,6 +388,10 @@
|
| && !(element.modifiers.isConst() || element.modifiers.isFinal())) {
|
| return false;
|
| }
|
| + // If the method is closurized, the closure tracing phase will go
|
| + // through the users.
|
| + if (closurizedCount != 0) return false;
|
| +
|
| return super.hasStableType(inferrer);
|
| }
|
| }
|
|
|