TypeScript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionAsIs.ts
2015-01-28 16:17:13 -08:00

5 lines
98 B
TypeScript

// @target:ES5
var arrow1 = a => { };
var arrow2 = (a) => { };
var arrow3 = (a, b) => { };