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

Unified Diff: runtime/lib/byte_array.dart

Issue 11312237: Dynamic -> dynamic. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | « no previous file | runtime/lib/function_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/byte_array.dart
diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart
index fff47bda1d14d552e004d5cbfe73f6334c16bfe5..0f97c3d20814c70f92ab99fbeb85e85707ee37ae 100644
--- a/runtime/lib/byte_array.dart
+++ b/runtime/lib/byte_array.dart
@@ -136,8 +136,8 @@ abstract class _ByteArrayBase {
return Collections.map(this, new List(), f);
}
- Dynamic reduce(Dynamic initialValue,
- Dynamic combine(Dynamic initialValue, element)) {
+ dynamic reduce(dynamic initialValue,
+ dynamic combine(dynamic initialValue, element)) {
return Collections.reduce(this, initialValue, combine);
}
@@ -1616,8 +1616,8 @@ class _ByteArrayViewBase {
return Collections.map(this, new List(), f);
}
- Dynamic reduce(Dynamic initialValue,
- Dynamic combine(Dynamic initialValue, element)) {
+ dynamic reduce(dynamic initialValue,
+ dynamic combine(dynamic initialValue, element)) {
return Collections.reduce(this, initialValue, combine);
}
« no previous file with comments | « no previous file | runtime/lib/function_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698