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

Unified Diff: client/dom/generated/src/frog/Uint32Array.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/Uint16Array.dart ('k') | client/dom/generated/src/frog/Uint8Array.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/Uint32Array.dart
diff --git a/client/dom/generated/src/frog/Uint32Array.dart b/client/dom/generated/src/frog/Uint32Array.dart
index 281f9279d927528703c616363a9add36815e8a07..089581937cfe55b2ab398d5edd5054b1f6383771 100644
--- a/client/dom/generated/src/frog/Uint32Array.dart
+++ b/client/dom/generated/src/frog/Uint32Array.dart
@@ -84,7 +84,9 @@ class _Uint32ArrayJs extends _ArrayBufferViewJs implements Uint32Array, 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);''';
_Uint32ArrayJs subarray(int start, [int end = null]) native;
}
« no previous file with comments | « client/dom/generated/src/frog/Uint16Array.dart ('k') | client/dom/generated/src/frog/Uint8Array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698