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

Unified Diff: client/html/generated/src/wrapping/_DataViewWrappingImplementation.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/_DataViewWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_DataViewWrappingImplementation.dart b/client/html/generated/src/wrapping/_DataViewWrappingImplementation.dart
index 40763f651df9fd0331d9d501192e6f4ac1fc05c7..6e0fe1533c4023b1468aa70268d675fcd04d4722 100644
--- a/client/html/generated/src/wrapping/_DataViewWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_DataViewWrappingImplementation.dart
@@ -7,7 +7,7 @@
class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementation implements DataView {
DataViewWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
- num getFloat32(int byteOffset, [bool littleEndian = null]) {
+ num getFloat32(int byteOffset, [bool littleEndian]) {
if (littleEndian === null) {
return _ptr.getFloat32(byteOffset);
} else {
@@ -15,7 +15,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
}
}
- num getFloat64(int byteOffset, [bool littleEndian = null]) {
+ num getFloat64(int byteOffset, [bool littleEndian]) {
if (littleEndian === null) {
return _ptr.getFloat64(byteOffset);
} else {
@@ -23,7 +23,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
}
}
- int getInt16(int byteOffset, [bool littleEndian = null]) {
+ int getInt16(int byteOffset, [bool littleEndian]) {
if (littleEndian === null) {
return _ptr.getInt16(byteOffset);
} else {
@@ -31,7 +31,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
}
}
- int getInt32(int byteOffset, [bool littleEndian = null]) {
+ int getInt32(int byteOffset, [bool littleEndian]) {
if (littleEndian === null) {
return _ptr.getInt32(byteOffset);
} else {
@@ -43,7 +43,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
return _ptr.getInt8();
}
- int getUint16(int byteOffset, [bool littleEndian = null]) {
+ int getUint16(int byteOffset, [bool littleEndian]) {
if (littleEndian === null) {
return _ptr.getUint16(byteOffset);
} else {
@@ -51,7 +51,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
}
}
- int getUint32(int byteOffset, [bool littleEndian = null]) {
+ int getUint32(int byteOffset, [bool littleEndian]) {
if (littleEndian === null) {
return _ptr.getUint32(byteOffset);
} else {
@@ -63,7 +63,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
return _ptr.getUint8();
}
- void setFloat32(int byteOffset, num value, [bool littleEndian = null]) {
+ void setFloat32(int byteOffset, num value, [bool littleEndian]) {
if (littleEndian === null) {
_ptr.setFloat32(byteOffset, value);
return;
@@ -73,7 +73,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
}
}
- void setFloat64(int byteOffset, num value, [bool littleEndian = null]) {
+ void setFloat64(int byteOffset, num value, [bool littleEndian]) {
if (littleEndian === null) {
_ptr.setFloat64(byteOffset, value);
return;
@@ -83,7 +83,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
}
}
- void setInt16(int byteOffset, int value, [bool littleEndian = null]) {
+ void setInt16(int byteOffset, int value, [bool littleEndian]) {
if (littleEndian === null) {
_ptr.setInt16(byteOffset, value);
return;
@@ -93,7 +93,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
}
}
- void setInt32(int byteOffset, int value, [bool littleEndian = null]) {
+ void setInt32(int byteOffset, int value, [bool littleEndian]) {
if (littleEndian === null) {
_ptr.setInt32(byteOffset, value);
return;
@@ -108,7 +108,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
return;
}
- void setUint16(int byteOffset, int value, [bool littleEndian = null]) {
+ void setUint16(int byteOffset, int value, [bool littleEndian]) {
if (littleEndian === null) {
_ptr.setUint16(byteOffset, value);
return;
@@ -118,7 +118,7 @@ class DataViewWrappingImplementation extends ArrayBufferViewWrappingImplementati
}
}
- void setUint32(int byteOffset, int value, [bool littleEndian = null]) {
+ void setUint32(int byteOffset, int value, [bool littleEndian]) {
if (littleEndian === null) {
_ptr.setUint32(byteOffset, value);
return;

Powered by Google App Engine
This is Rietveld 408576698