| Index: lib/compiler/implementation/js_backend/native_emitter.dart
|
| diff --git a/lib/compiler/implementation/js_backend/native_emitter.dart b/lib/compiler/implementation/js_backend/native_emitter.dart
|
| index 673c98822ac3d95ef585605ddb752b5020a8c739..8cd5c334bd0325ac0392609dfee93d1bcc9e0beb 100644
|
| --- a/lib/compiler/implementation/js_backend/native_emitter.dart
|
| +++ b/lib/compiler/implementation/js_backend/native_emitter.dart
|
| @@ -184,7 +184,7 @@ function(cls, fields, methods) {
|
| // If [name] is not in [argumentsBuffer], then the parameter is
|
| // an optional parameter that was not provided for that stub.
|
| if (argumentsBuffer.indexOf(name) == -1) return;
|
| - Type type = parameter.computeType(compiler).unalias(compiler);
|
| + DartType type = parameter.computeType(compiler).unalias(compiler);
|
| if (type is FunctionType) {
|
| // The parameter type is a function type either directly or through
|
| // typedef(s).
|
|
|