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

Unified Diff: compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java

Issue 9149008: Fixes for parsing warnigs, issue 1060. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
diff --git a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
index b088b689da1018d96bdb280064f976c4293186b4..ae21284252ebf7fcb5cff4f1d3db36b1af0b4a6f 100644
--- a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
+++ b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
@@ -294,7 +294,7 @@ abstract class ResolverTestCase extends TestCase {
protected static DartUnit makeUnit(DartNode... topLevelElements) {
- DartUnit unit = new DartUnit(null);
+ DartUnit unit = new DartUnit(null, false);
for (DartNode topLevelElement : topLevelElements) {
unit.addTopLevelNode(topLevelElement);
}

Powered by Google App Engine
This is Rietveld 408576698