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

Unified Diff: compiler/java/com/google/dart/compiler/ast/DartUnit.java

Issue 8222016: Hashcodes were being improperly calculated for public API of libraries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More cleanup Created 9 years, 2 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: compiler/java/com/google/dart/compiler/ast/DartUnit.java
diff --git a/compiler/java/com/google/dart/compiler/ast/DartUnit.java b/compiler/java/com/google/dart/compiler/ast/DartUnit.java
index f621a8918bf93c95670d8152e9aada00bdfcf09c..faa2982e1fc27c93ce67e78a998c68341718df51 100644
--- a/compiler/java/com/google/dart/compiler/ast/DartUnit.java
+++ b/compiler/java/com/google/dart/compiler/ast/DartUnit.java
@@ -127,7 +127,7 @@ public class DartUnit extends DartNode {
public final String toDietSource() {
if (dietParse == null) {
DefaultTextOutput out = new DefaultTextOutput(false);
- new DartToSourceVisitor(out, true).accept(this);
+ new DartToSourceVisitor(out, true, true).accept(this);
dietParse = out.toString();
}
return dietParse;

Powered by Google App Engine
This is Rietveld 408576698