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

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

Issue 10913112: Clean ups for trailing whitespace and block style (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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/DartIfStatement.java
diff --git a/compiler/java/com/google/dart/compiler/ast/DartIfStatement.java b/compiler/java/com/google/dart/compiler/ast/DartIfStatement.java
index 10685f8fb5fa59a4b6dfbd9d1d51b2db9459a321..e75c659a92f1847b3becf4671e0dc63a0cfd4400 100644
--- a/compiler/java/com/google/dart/compiler/ast/DartIfStatement.java
+++ b/compiler/java/com/google/dart/compiler/ast/DartIfStatement.java
@@ -15,10 +15,10 @@ public class DartIfStatement extends DartStatement {
private final int closeParenOffset;
private final int elseTokenOffset;
- public DartIfStatement(DartExpression condition, int closeParentOffset, DartStatement thenStmt,
+ public DartIfStatement(DartExpression condition, int closeParenOffset, DartStatement thenStmt,
int elseTokenOffset, DartStatement elseStmt) {
this.condition = becomeParentOf(condition);
- closeParenOffset = closeParentOffset;
+ this.closeParenOffset = closeParenOffset;
this.thenStmt = becomeParentOf(thenStmt);
this.elseTokenOffset = elseTokenOffset;
this.elseStmt = becomeParentOf(elseStmt);

Powered by Google App Engine
This is Rietveld 408576698