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

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

Issue 11260031: Issue 6202. Remove support for 'Dynamic'. Add Clean Up to rename to 'dynamic'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 190d9e323a89741b7a47a478e794e13debc9fc79..b5f4233314fa590c39211e8bff23011e206bdcc6 100644
--- a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
+++ b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTestCase.java
@@ -185,7 +185,7 @@ abstract class ResolverTestCase extends TestCase {
private final ClassElement objectElement;
{
- ClassElement dynamicElement = Elements.classNamed("Dynamic");
+ ClassElement dynamicElement = Elements.classNamed("dynamic");
dynamicType = Types.interfaceType(dynamicElement, Collections.<Type>emptyList());
dynamicElement.setType(dynamicType);

Powered by Google App Engine
This is Rietveld 408576698