Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(382)

Unified Diff: pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart

Issue 843503002: dart2js: Change name and comment of the flag needsArrayInitializerSupport. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698