mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-13 06:51:34 +00:00
New ArrayBuffer/TypedArray; Stdlib restructure; Fix importing stdlib in stdlib; Traverse constructors; Allow initialization of readonly instance fields in constructors
This commit is contained in:
@ -7,7 +7,7 @@ assert(buffer.byteLength == 8);
|
||||
var sliced = buffer.slice();
|
||||
|
||||
assert(sliced.byteLength == 8);
|
||||
assert(sliced != buffer);
|
||||
assert(sliced !== buffer);
|
||||
|
||||
sliced = buffer.slice(1);
|
||||
|
||||
|
Reference in New Issue
Block a user