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

Unified Diff: tests/compiler/dart2js/members_test.dart

Issue 304153014: Remove element from DynamicType. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix infinite loop. Created 6 years, 7 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
« no previous file with comments | « sdk/lib/_internal/lib/js_helper.dart ('k') | tests/compiler/dart2js/type_test_helper.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/members_test.dart
diff --git a/tests/compiler/dart2js/members_test.dart b/tests/compiler/dart2js/members_test.dart
index 6d697a943ac5826a6da869ca98f7fb90c87123b1..6b1679c3e645f0550cfb0b577a95343b65fbc263 100644
--- a/tests/compiler/dart2js/members_test.dart
+++ b/tests/compiler/dart2js/members_test.dart
@@ -188,7 +188,7 @@ void testClassMembers() {
InterfaceType String_ = env['String'];
InterfaceType num_ = env['num'];
InterfaceType int_ = env['int'];
- InterfaceType dynamic_ = env['dynamic'];
+ DynamicType dynamic_ = env['dynamic'];
VoidType void_ = env['void'];
InterfaceType Type_ = env['Type'];
InterfaceType Invocation_ = env['Invocation'];
@@ -400,7 +400,7 @@ void testInterfaceMembers() {
abstract class D implements A, B, C {}
""").then((env) {
- InterfaceType dynamic_ = env['dynamic'];
+ DynamicType dynamic_ = env['dynamic'];
VoidType void_ = env['void'];
InterfaceType num_ = env['num'];
InterfaceType int_ = env['int'];
@@ -566,7 +566,7 @@ void testClassVsInterfaceMembers() {
abstract class C extends A implements B {}
""").then((env) {
- InterfaceType dynamic_ = env['dynamic'];
+ DynamicType dynamic_ = env['dynamic'];
VoidType void_ = env['void'];
InterfaceType num_ = env['num'];
InterfaceType int_ = env['int'];
@@ -619,7 +619,7 @@ void testMixinMembers() {
abstract class C<U, V> extends Object with A<U> implements B<V> {}
""").then((env) {
- InterfaceType dynamic_ = env['dynamic'];
+ DynamicType dynamic_ = env['dynamic'];
VoidType void_ = env['void'];
InterfaceType num_ = env['num'];
InterfaceType int_ = env['int'];
« no previous file with comments | « sdk/lib/_internal/lib/js_helper.dart ('k') | tests/compiler/dart2js/type_test_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698