blob: 62aa2690fda82c6a328ea0abc355d2d8be3d48d7 [file] [log] [blame]
var af1 = () => {};
var af2 = (a) => {a + 1};
shouldBe("typeof af1 === 'function'", "true");
shouldBe("typeof af2 === 'function'", "true");
shouldBe("typeof (()=>{}) === 'function'", "true");
shouldBe("typeof ((b) => {b + 1})==='function'", "true");
var successfullyParsed = true;