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

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

Issue 10832321: Issue 4048. Support for revised library/import syntax (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 a683c4c39059af0f02bbf15110b03a2b749510e5..a05fe431b9dbca80dd2c46856fa1064fdc45a653 100644
--- a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
+++ b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
@@ -56,7 +56,7 @@ abstract class ResolverTestCase extends TestCase {
private static CoreTypeProvider setupTypeProvider(DartUnit unit, TestCompilerContext context, Scope scope) {
new TopLevelElementBuilder().exec(unit.getLibrary(), unit, context);
- new TopLevelElementBuilder().fillInUnitScope(unit, context, scope, true);
+ new TopLevelElementBuilder().fillInUnitScope(unit, context, scope, null);
ClassElement object = (ClassElement) scope.findElement(null, "Object");
assertNotNull("Cannot resolve Object", object);
return new MockCoreTypeProvider(object);

Powered by Google App Engine
This is Rietveld 408576698