| Index: pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart
|
| diff --git a/pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart b/pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart
|
| index a69fc80565b7fa30472c8a07e3c96139606f889e..5e4a7120319273d11bd42ea7c4f4ea3b198e427d 100644
|
| --- a/pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart
|
| +++ b/pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart
|
| @@ -24,10 +24,12 @@ class OldEmitter implements Emitter {
|
| bool needsClassSupport = false;
|
| bool needsMixinSupport = false;
|
| bool needsLazyInitializer = false;
|
| - /// This is set to true in ContainerBuilder if the program contains
|
| - /// function elements that need extra handling. In this case the element is
|
| - /// stored along with an array containing the needed information.
|
| - bool needsArrayInitializerSupport = false;
|
| +
|
| + /// True if [ContainerBuilder.addMemberMethodFromInfo] used "structured info",
|
| + /// that is, some function was needed for reflection, had stubs, or had a
|
| + /// super alias.
|
| + bool needsStructuredMemberInfo = false;
|
| +
|
| final Namer namer;
|
| ConstantEmitter constantEmitter;
|
| NativeEmitter get nativeEmitter => task.nativeEmitter;
|
|
|