| Index: dart/lib/compiler/implementation/elements/elements.dart
|
| diff --git a/dart/lib/compiler/implementation/elements/elements.dart b/dart/lib/compiler/implementation/elements/elements.dart
|
| index 5f879bd72a7791deaf29928a0f94002816631f02..55812ae7516a4a11f8a466f89904283e3f33e42d 100644
|
| --- a/dart/lib/compiler/implementation/elements/elements.dart
|
| +++ b/dart/lib/compiler/implementation/elements/elements.dart
|
| @@ -646,7 +646,9 @@ class ConstructorBodyElement extends FunctionElement {
|
|
|
| bool isInstanceMember() => true;
|
|
|
| - FunctionType computeType(Compiler compiler) { unreachable(); }
|
| + FunctionType computeType(Compiler compiler) {
|
| + compiler.reportFatalError('Internal error: $this.computeType', this);
|
| + }
|
|
|
| Node parseNode(DiagnosticListener listener) {
|
| if (cachedNode !== null) return cachedNode;
|
|
|