Accessor parsing; Cleanup

This commit is contained in:
dcodeIO
2017-12-14 11:55:35 +01:00
parent 99b0fdf7a8
commit c6c36613e6
30 changed files with 171 additions and 124 deletions

View File

@ -1,3 +1,7 @@
var a: i32;
let b: i32;
const c: i32;
const c: i32 = 0;
let d = 2;
let e; // type expected
const f: i32; // must be initialized