swc/crates/swc_ecma_parser/tests/tsc/emitRestParametersFunctionExpression.ts

6 lines
170 B
TypeScript

// @target: es5
var funcExp = (...rest) => { }
var funcExp1 = (X: number, ...rest) => { }
var funcExp2 = function (...rest) { }
var funcExp3 = (function (...rest) { })()