| Index: dart/pkg/compiler/lib/src/scanner/listener.dart
|
| diff --git a/dart/pkg/compiler/lib/src/scanner/listener.dart b/dart/pkg/compiler/lib/src/scanner/listener.dart
|
| index aa5224168ab42ed3ebf0579e1555306dfa4a1dc6..887232e5ae15de41569f8a2f6861b1b74349f1cd 100644
|
| --- a/dart/pkg/compiler/lib/src/scanner/listener.dart
|
| +++ b/dart/pkg/compiler/lib/src/scanner/listener.dart
|
| @@ -2359,6 +2359,12 @@ class PartialFunctionElement extends FunctionElementX
|
| super.reuseElement();
|
| reusePartialFunctionMixin();
|
| }
|
| +
|
| + PartialFunctionElement copyWithEnclosing(Element enclosing) {
|
| + return new PartialFunctionElement(
|
| + name, beginToken, getOrSet, endToken, kind, modifiers, enclosing,
|
| + hasNoBody);
|
| + }
|
| }
|
|
|
| class PartialConstructorElement extends ConstructorElementX
|
|
|