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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java

Issue 68233003: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « no previous file | editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java
index 2101c78bf3a8bf49bd0d87826d97a9224977a904..c1f01a7311a56b55bd321079cf9b0279007a85e0 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java
@@ -77,7 +77,7 @@ public abstract class ASTNode {
ASTNode node = this;
while (node != null && !enclosingClass.isInstance(node)) {
node = node.getParent();
- };
+ }
return (E) node;
}
« no previous file with comments | « no previous file | editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698