Inline
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user