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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/ResolvableCompilationUnit.java

Issue 214253002: Translate Java enums to Dart constants. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/ResolvableCompilationUnit.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/ResolvableCompilationUnit.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/ResolvableCompilationUnit.java
index 43a12e56bec3223b1ee84cb3c7a87ccae21033b8..1d0920083296a898eef885b9c53375a379e13999 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/ResolvableCompilationUnit.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/ResolvableCompilationUnit.java
@@ -35,7 +35,7 @@ public class ResolvableCompilationUnit extends TimestampedData<CompilationUnit>
* @param unit the AST that was created from the source
*/
public ResolvableCompilationUnit(long modificationTime, CompilationUnit unit) {
- super(modificationTime, unit);
+ this(modificationTime, unit, null);
}
/**

Powered by Google App Engine
This is Rietveld 408576698