| Index: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| index e5caac120db18b73c4aee20e5b69d5e4ecce2b6a..002d178a5f9120ec4a37c89c5dd9ad080e589ef7 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| @@ -2358,17 +2358,6 @@ abstract class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| checkType(input, type);
|
| attachLocationToLast(node);
|
| }
|
| - if (node.hasArgumentChecks()) {
|
| - InterfaceType interfaceType = type;
|
| - ClassElement cls = type.element;
|
| - Link<DartType> arguments = interfaceType.typeArguments;
|
| - js.Expression result = pop();
|
| - for (int i = 0; i < node.checkCount; i++) {
|
| - use(node.getCheck(i));
|
| - result = new js.Binary('&&', result, pop());
|
| - }
|
| - push(result, node);
|
| - }
|
| if (node.nullOk) {
|
| checkNull(input);
|
| push(new js.Binary('||', pop(), pop()), node);
|
|
|