Asterisk imports parsing; Pussyfooting around stdlib

This commit is contained in:
dcodeIO
2017-12-23 00:48:54 +01:00
parent a0ec684e1c
commit ad298c7bea
15 changed files with 309 additions and 109 deletions

View File

@ -1,9 +1,10 @@
@global()
export class Array<T> {
private ptr: usize;
readonly capacity: i32;
length: i32;
ptr: usize;
constructor(capacity: i32 = 0) {
if (capacity < 0)