TypeScript/tests/baselines/reference/emitDefaultParametersFunctionPropertyES6.js
2015-02-06 18:45:09 -08:00

16 lines
450 B
JavaScript

//// [emitDefaultParametersFunctionPropertyES6.ts]
var obj2 = {
func1(y = 10, ...rest) { },
func2(x = "hello") { },
func3(x: string, z: number, y = "hello") { },
func4(x: string, z: number, y = "hello", ...rest) { },
}
//// [emitDefaultParametersFunctionPropertyES6.js]
var obj2 = {
func1(y = 10, ...rest) { },
func2(x = "hello") { },
func3(x, z, y = "hello") { },
func4(x, z, y = "hello", ...rest) { },
};