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

Unified Diff: lib/compiler/implementation/scanner/class_element_parser.dart

Issue 10310040: Sort the output (for now just the classes and instance members). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove (now) unnecessary changes. Created 8 years, 7 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: lib/compiler/implementation/scanner/class_element_parser.dart
diff --git a/lib/compiler/implementation/scanner/class_element_parser.dart b/lib/compiler/implementation/scanner/class_element_parser.dart
index ef0ebe5dfb6b2931265730cd26d136e07249a646..e958c67b2b413a7214423871c4c873828032e777 100644
--- a/lib/compiler/implementation/scanner/class_element_parser.dart
+++ b/lib/compiler/implementation/scanner/class_element_parser.dart
@@ -16,8 +16,9 @@ class PartialClassElement extends ClassElement {
PartialClassElement(SourceString name,
Token this.beginToken,
Token this.endToken,
- CompilationUnitElement enclosing)
- : super(name, enclosing);
+ CompilationUnitElement enclosing,
+ int id)
+ : super(name, enclosing, id);
ClassNode parseNode(DiagnosticListener diagnosticListener) {
if (cachedNode != null) return cachedNode;

Powered by Google App Engine
This is Rietveld 408576698