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

Unified Diff: sdk/lib/_internal/compiler/implementation/scanner/class_element_parser.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/class_element_parser.dart
diff --git a/sdk/lib/_internal/compiler/implementation/scanner/class_element_parser.dart b/sdk/lib/_internal/compiler/implementation/scanner/class_element_parser.dart
index 69a62efb4c563ae1974ee799e2856dd0d4cc0f65..1d17df389df7ecf5453490b5e3b04b78188e97b9 100644
--- a/sdk/lib/_internal/compiler/implementation/scanner/class_element_parser.dart
+++ b/sdk/lib/_internal/compiler/implementation/scanner/class_element_parser.dart
@@ -165,7 +165,7 @@ class MemberListener extends NodeListener {
pushNode(null);
void buildFieldElement(String name, Element fields) {
Element element =
- new VariableElementX(name, fields, ElementKind.FIELD, null);
+ new FieldElementX(name, fields, null);
addMember(element);
}
buildFieldElements(modifiers, variableDefinitions.definitions,

Powered by Google App Engine
This is Rietveld 408576698