| Index: sdk/lib/_internal/compiler/implementation/tree/nodes.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/tree/nodes.dart b/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
|
| index 9875b254ada47a304e593c6a2ae888ac3e16d92a..a67ee40a92243876757aae6d65e84588cbbe5338 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
|
| @@ -693,6 +693,11 @@ class FunctionExpression extends Expression {
|
|
|
| accept(Visitor visitor) => visitor.visitFunctionExpression(this);
|
|
|
| + bool get isRedirectingFactory {
|
| + return body != null && body.asReturn() != null &&
|
| + body.asReturn().isRedirectingFactoryBody;
|
| + }
|
| +
|
| visitChildren(Visitor visitor) {
|
| if (modifiers != null) modifiers.accept(visitor);
|
| if (returnType != null) returnType.accept(visitor);
|
|
|