| Index: dart/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/tree/nodes.dart b/dart/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
|
| index de5cac53bcb636ce8225cdc3a32924907165af95..ac32e1628528fe393bc24f58141fb5b0c11ff516 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
|
| @@ -315,6 +315,16 @@ abstract class Statement extends Node {
|
| bool isValidBreakTarget() => true;
|
| }
|
|
|
| +/// Errorneous expression that behaves as a literal integer (0).
|
| +class ErrorExpression extends LiteralInt {
|
| + ErrorExpression(token)
|
| + : super(token, null);
|
| +
|
| + ErrorExpression asErrorExpression() => this;
|
| +
|
| + int get value => 0;
|
| +}
|
| +
|
| /**
|
| * A message send aka method invocation. In Dart, most operations can
|
| * (and should) be considered as message sends. Getters and setters
|
|
|