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

Unified Diff: client/dom/generated/src/frog/Int32Array.dart

Issue 9453030: Fix for issue 1814 for dart:dom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix typo Created 8 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 | « client/dom/generated/src/frog/Int16Array.dart ('k') | client/dom/generated/src/frog/Int8Array.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/Int32Array.dart
diff --git a/client/dom/generated/src/frog/Int32Array.dart b/client/dom/generated/src/frog/Int32Array.dart
index 0a15edd53f4835aa8d0e76e9f66c6fd8b28ac0ca..fe87a959fdf6dd8063a703899bd244e75be9153c 100644
--- a/client/dom/generated/src/frog/Int32Array.dart
+++ b/client/dom/generated/src/frog/Int32Array.dart
@@ -84,7 +84,9 @@ class _Int32ArrayJs extends _ArrayBufferViewJs implements Int32Array, List<int>
// -- end List<int> mixins.
- void setElements(Object array, [int offset = null]) native;
+ void setElements(Object array, [int offset = null]) native '''
+if (offset == null) return this.set(array);
+return this.set(array, offset);''';
_Int32ArrayJs subarray(int start, [int end = null]) native;
}
« no previous file with comments | « client/dom/generated/src/frog/Int16Array.dart ('k') | client/dom/generated/src/frog/Int8Array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698