| Index: pkg/compiler/lib/src/ssa/optimize.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/optimize.dart b/pkg/compiler/lib/src/ssa/optimize.dart
|
| index 741dd3265d57ae93d0976e56ae40f10a654bf8a5..30c8b11b597c915522567c0553b117f71529feb6 100644
|
| --- a/pkg/compiler/lib/src/ssa/optimize.dart
|
| +++ b/pkg/compiler/lib/src/ssa/optimize.dart
|
| @@ -473,7 +473,7 @@ class SsaInstructionSimplifier extends HBaseVisitor
|
| bool canInline = true;
|
| signature.forEachParameter((ParameterElement element) {
|
| if (inputPosition++ < inputs.length && canInline) {
|
| - DartType type = element.type.unalias(compiler.resolution);
|
| + DartType type = element.type.unaliased;
|
| if (type is FunctionType) {
|
| canInline = false;
|
| }
|
|
|