| Index: lib/compiler/implementation/js_backend/emitter.dart
|
| diff --git a/lib/compiler/implementation/js_backend/emitter.dart b/lib/compiler/implementation/js_backend/emitter.dart
|
| index 9db01dd78afbc5c933e940c9251dacf21c614b0b..3a1d7c90898af0540d6f7d1848aa5e0f6f9194e0 100644
|
| --- a/lib/compiler/implementation/js_backend/emitter.dart
|
| +++ b/lib/compiler/implementation/js_backend/emitter.dart
|
| @@ -552,7 +552,7 @@ function(prototype, staticName, fieldName, getterName, lazyValue) {
|
| return null;
|
| } else {
|
| SourceString helper = compiler.backend.getCheckedModeHelper(type);
|
| - Element helperElement = compiler.findHelper(helper);
|
| + FunctionElement helperElement = compiler.findHelper(helper);
|
| String helperName = namer.isolateAccess(helperElement);
|
| String additionalArgument = '';
|
| if (helperElement.computeSignature(compiler).parameterCount != 1) {
|
| @@ -670,7 +670,7 @@ function(prototype, staticName, fieldName, getterName, lazyValue) {
|
| }
|
| });
|
|
|
| - generateIsTestsOn(classElement, (Element other) {
|
| + generateIsTestsOn(classElement, (ClassElement other) {
|
| String code;
|
| if (other.isObject(compiler)) return;
|
| if (nativeEmitter.requiresNativeIsCheck(other)) {
|
|
|