| Index: sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| index 8bd75a3d228adbf1e6929a9b07b9b19e25263baf..70e481e991071aa46199dd1769555bce6d3c7d87 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
|
| @@ -409,14 +409,7 @@ class DartBackend extends Backend {
|
| SynthesizedConstructorElementX constructor =
|
| new SynthesizedConstructorElementX(
|
| classElement.name, null, classElement, false);
|
| - constructor.type = new FunctionType(
|
| - constructor,
|
| - compiler.types.voidType,
|
| - const Link<DartType>(),
|
| - const Link<DartType>(),
|
| - const Link<String>(),
|
| - const Link<DartType>()
|
| - );
|
| + constructor.type = new FunctionType(constructor, compiler.types.voidType);
|
| constructor.cachedNode = new FunctionExpression(
|
| new Send(classNode.name, synthesizedIdentifier),
|
| new NodeList(new StringToken.fromString(OPEN_PAREN_INFO, '(', -1),
|
|
|