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

Unified Diff: sdk/lib/_internal/compiler/implementation/scanner/listener.dart

Issue 90713003: Dart2js option to dump info about compilation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years 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: sdk/lib/_internal/compiler/implementation/scanner/listener.dart
diff --git a/sdk/lib/_internal/compiler/implementation/scanner/listener.dart b/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
index 71992fab8d00a404d04bfc881f2b3da54ac7e80f..1be0e2a56a023d5b46beed6b5827d33367b2deb2 100644
--- a/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
+++ b/sdk/lib/_internal/compiler/implementation/scanner/listener.dart
@@ -858,7 +858,7 @@ class ElementListener extends Listener {
void endTopLevelFields(int count, Token beginToken, Token endToken) {
void buildFieldElement(String name, Element fields) {
- pushElement(new VariableElementX(name, fields, ElementKind.FIELD, null));
+ pushElement(new FieldElementX(name, fields, null));
}
NodeList variables = makeNodeList(count, null, null, ",");
TypeAnnotation type = popNode();

Powered by Google App Engine
This is Rietveld 408576698