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

Unified Diff: test/dart_codegen/expect/collection/hash_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
Index: test/dart_codegen/expect/collection/hash_set.dart
diff --git a/test/dart_codegen/expect/collection/hash_set.dart b/test/dart_codegen/expect/collection/hash_set.dart
index 139a652db5972f6cdf187e347fcd81695abbe945..a83a1fabe5e8b8bbeb1ad34d45c209686ebe9a44 100644
--- a/test/dart_codegen/expect/collection/hash_set.dart
+++ b/test/dart_codegen/expect/collection/hash_set.dart
@@ -2,14 +2,14 @@ part of dart.collection;
abstract class _HashSetBase<E> extends SetBase<E> {Set<E> difference(Set<Object> other) {
Set<E> result = _newSet();
for (var element in this) {
- if (!other.contains(element)) result.add(DDC$RT.cast(element, dynamic, E, "CastGeneral", """line 17, column 48 of dart:collection/hash_set.dart: """, element is E, false));
+ if (!other.contains(element)) result.add(DEVC$RT.cast(element, dynamic, E, "CastGeneral", """line 17, column 48 of dart:collection/hash_set.dart: """, element is E, false));
}
return result;
}
Set<E> intersection(Set<Object> other) {
Set<E> result = _newSet();
for (var element in this) {
- if (other.contains(element)) result.add(DDC$RT.cast(element, dynamic, E, "CastGeneral", """line 25, column 47 of dart:collection/hash_set.dart: """, element is E, false));
+ if (other.contains(element)) result.add(DEVC$RT.cast(element, dynamic, E, "CastGeneral", """line 25, column 47 of dart:collection/hash_set.dart: """, element is E, false));
}
return result;
}
« no previous file with comments | « test/dart_codegen/expect/collection/hash_map.dart ('k') | test/dart_codegen/expect/collection/iterable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698