TypeScript/tests/baselines/reference/emitArrowFunctionAsIsES6.js

11 lines
232 B
TypeScript
Raw Normal View History

2015-01-29 01:17:13 +01:00
//// [emitArrowFunctionAsIsES6.ts]
var arrow1 = a => { };
var arrow2 = (a) => { };
var arrow3 = (a, b) => { };
//// [emitArrowFunctionAsIsES6.js]
var arrow1 = a => { };
var arrow2 = (a) => { };
var arrow3 = (a, b) => { };