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

Unified Diff: test/dart_codegen/expect/collection/set.dart

Issue 967933005: rename ddc -> dev_compiler, fixes #84 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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 | « test/dart_codegen/expect/collection/queue.dart ('k') | test/dart_codegen/expect/collection/splay_tree.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/collection/set.dart
diff --git a/test/dart_codegen/expect/collection/set.dart b/test/dart_codegen/expect/collection/set.dart
index 076afbcfaf21b09c272e04d435c0d36d53ff0983..4314d701ebf2fccd2e1d49bb95cc1d647ea927d2 100644
--- a/test/dart_codegen/expect/collection/set.dart
+++ b/test/dart_codegen/expect/collection/set.dart
@@ -29,9 +29,9 @@ part of dart.collection;
for (E element in this) {
if (test(element)) toRemove.add(element);
}
- removeAll(DDC$RT.cast(toRemove, DDC$RT.type((List<dynamic> _) {
+ removeAll(DEVC$RT.cast(toRemove, DEVC$RT.type((List<dynamic> _) {
}
- ), DDC$RT.type((Iterable<Object> _) {
+ ), DEVC$RT.type((Iterable<Object> _) {
}
), "CastDynamic", """line 77, column 15 of dart:collection/set.dart: """, toRemove is Iterable<Object>, false));
}
@@ -40,9 +40,9 @@ part of dart.collection;
for (E element in this) {
if (!test(element)) toRemove.add(element);
}
- removeAll(DDC$RT.cast(toRemove, DDC$RT.type((List<dynamic> _) {
+ removeAll(DEVC$RT.cast(toRemove, DEVC$RT.type((List<dynamic> _) {
}
- ), DDC$RT.type((Iterable<Object> _) {
+ ), DEVC$RT.type((Iterable<Object> _) {
}
), "CastDynamic", """line 85, column 15 of dart:collection/set.dart: """, toRemove is Iterable<Object>, false));
}
@@ -82,7 +82,7 @@ part of dart.collection;
if (length > 1) throw IterableElementError.tooMany();
Iterator it = iterator;
if (!it.moveNext()) throw IterableElementError.noElement();
- E result = DDC$RT.cast(it.current, dynamic, E, "CastGeneral", """line 130, column 16 of dart:collection/set.dart: """, it.current is E, false);
+ E result = DEVC$RT.cast(it.current, dynamic, E, "CastGeneral", """line 130, column 16 of dart:collection/set.dart: """, it.current is E, false);
return result;
}
String toString() => IterableBase.iterableToFullString(this, '{', '}');
@@ -154,7 +154,7 @@ part of dart.collection;
if (!it.moveNext()) {
throw IterableElementError.noElement();
}
- return DDC$RT.cast(it.current, dynamic, E, "CastGeneral", """line 220, column 12 of dart:collection/set.dart: """, it.current is E, false);
+ return DEVC$RT.cast(it.current, dynamic, E, "CastGeneral", """line 220, column 12 of dart:collection/set.dart: """, it.current is E, false);
}
E get last {
Iterator it = iterator;
@@ -163,7 +163,7 @@ part of dart.collection;
}
E result;
do {
- result = DDC$RT.cast(it.current, dynamic, E, "CastGeneral", """line 230, column 16 of dart:collection/set.dart: """, it.current is E, false);
+ result = DEVC$RT.cast(it.current, dynamic, E, "CastGeneral", """line 230, column 16 of dart:collection/set.dart: """, it.current is E, false);
}
while (it.moveNext()); return result;
}
« no previous file with comments | « test/dart_codegen/expect/collection/queue.dart ('k') | test/dart_codegen/expect/collection/splay_tree.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698