TypeScript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionAsIs.ts

5 lines
98 B
TypeScript
Raw Normal View History

2015-01-29 01:17:13 +01:00
// @target:ES5
var arrow1 = a => { };
var arrow2 = (a) => { };
var arrow3 = (a, b) => { };