| Index: lib/src/codegen/js_codegen.dart
|
| diff --git a/lib/src/codegen/js_codegen.dart b/lib/src/codegen/js_codegen.dart
|
| index 9c4bf292abbfeaacfd7358bd893ad7b58acb9dfa..a898d076b759fc01f0655332b630bb3c75ce18d6 100644
|
| --- a/lib/src/codegen/js_codegen.dart
|
| +++ b/lib/src/codegen/js_codegen.dart
|
| @@ -1927,15 +1927,6 @@ class JSCodegenVisitor extends GeneralizingAstVisitor with ConversionVisitor {
|
| ]);
|
| }
|
|
|
| - if (_isJSBuiltinType(type)) {
|
| - // static call pattern for builtins.
|
| - return js.call('#.#(#, #)', [
|
| - _emitTypeName(type),
|
| - memberName,
|
| - _visit(target),
|
| - _visitList(args)
|
| - ]);
|
| - }
|
| // Generic dispatch to a statically known method.
|
| return js.call('#.#(#)', [_visit(target), memberName, _visitList(args)]);
|
| }
|
|
|