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

Unified Diff: client/html/generated/src/wrapping/_Int8ArrayWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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: client/html/generated/src/wrapping/_Int8ArrayWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_Int8ArrayWrappingImplementation.dart b/client/html/generated/src/wrapping/_Int8ArrayWrappingImplementation.dart
index d76f15bbc757a6d651ee935f3bf97a56997a15b2..592e29e6a3add2e8757c81660ebe13799116120f 100644
--- a/client/html/generated/src/wrapping/_Int8ArrayWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_Int8ArrayWrappingImplementation.dart
@@ -9,7 +9,7 @@ class Int8ArrayWrappingImplementation extends ArrayBufferViewWrappingImplementat
int get length() { return _ptr.length; }
- Int8Array subarray(int start, [int end = null]) {
+ Int8Array subarray(int start, [int end]) {
if (end === null) {
return LevelDom.wrapInt8Array(_ptr.subarray(start));
} else {

Powered by Google App Engine
This is Rietveld 408576698