Initial function expression parsing

This commit is contained in:
dcodeIO
2018-02-27 00:30:04 +01:00
parent 9ef8b162a9
commit bda6cb9792
8 changed files with 306 additions and 51 deletions

View File

@ -0,0 +1,16 @@
var a = function(): void {
;
};
var b = function someName(): void {
;
};
var c = function(a: i32, b: i32): i32 {
;
};
var d = (): void => {
;
};
var e = (a: i32, b: i32): i32 => {
;
};
var f = (a: i32): i32 => a;