This commit is contained in:
Joshua Granick
2014-07-06 22:21:44 -07:00
parent 16ceada602
commit 99fad47f69
7 changed files with 7 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ typedef Float32Array = js.html.Float32Array;
class Float32Array extends ArrayBufferView implements ArrayAccess<Float> {
public static var BYTES_PER_ELEMENT = 4;
public static inline var BYTES_PER_ELEMENT = 4;
public var length (default, null):Int;

View File

@@ -7,7 +7,7 @@ typedef Int16Array = js.html.Int16Array;
class Int16Array extends ArrayBufferView implements ArrayAccess<Int> {
public static var BYTES_PER_ELEMENT (default, null) = 2;
public static inline var BYTES_PER_ELEMENT (default, null) = 2;
public var length (default, null):Int;

View File

@@ -7,7 +7,7 @@ typedef Int32Array = js.html.Int32Array;
class Int32Array extends ArrayBufferView implements ArrayAccess<Int> {
public static var BYTES_PER_ELEMENT = 4;
public static inline var BYTES_PER_ELEMENT = 4;
public var length (default, null):Int;

View File

@@ -7,7 +7,7 @@ typedef Int8Array = js.html.Int8Array;
class Int8Array extends ArrayBufferView implements ArrayAccess<Int> {
public static var BYTES_PER_ELEMENT = 1;
public static inline var BYTES_PER_ELEMENT = 1;
public var length (default, null):Int;

View File

@@ -7,7 +7,7 @@ typedef UInt16Array = js.html.Uint16Array;
class UInt16Array extends ArrayBufferView implements ArrayAccess<Int> {
public static var BYTES_PER_ELEMENT = 2;
public static inline var BYTES_PER_ELEMENT = 2;
public var length (default, null):Int;

View File

@@ -7,7 +7,7 @@ typedef UInt32Array = js.html.Uint32Array;
class UInt32Array extends ArrayBufferView implements ArrayAccess<Int> {
public static var BYTES_PER_ELEMENT = 4;
public static inline var BYTES_PER_ELEMENT = 4;
public var length (default, null) : Int;

View File

@@ -7,7 +7,7 @@ typedef UInt8Array = js.html.Uint8Array;
class UInt8Array extends ArrayBufferView implements ArrayAccess<Int> {
public static var BYTES_PER_ELEMENT = 1;
public static inline var BYTES_PER_ELEMENT = 1;
public var length (default, null):Int;