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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java

Issue 10962014: Fixes for raw string and block clean ups (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: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java
index 0802d8aaadab072f03a255306def35600778d82d..3df2d77b6c1bc650044ec150c4b3a2d2616c660f 100644
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/dom/AST.java
@@ -168,7 +168,7 @@ public class AST {
} else if (nodeClass == DartMethodInvocation.class) {
return (N) new DartMethodInvocation(null, false, null, new ArrayList<DartExpression>());
} else if (nodeClass == DartNativeBlock.class) {
- return (N) new DartNativeBlock();
+ return (N) new DartNativeBlock(null);
} else if (nodeClass == DartNewExpression.class) {
return (N) new DartNewExpression(null, new ArrayList<DartExpression>(), false);
} else if (nodeClass == DartNullLiteral.class) {

Powered by Google App Engine
This is Rietveld 408576698