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

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

Powered by Google App Engine
This is Rietveld 408576698