TypeScript/tests/cases/compiler/jsFileCompilationShortHandProperty.ts

12 lines
161 B
TypeScript

// @allowJs: true
// @out: out.js
// @FileName: a.js
function foo() {
var a = 10;
var b = "Hello";
return {
a,
b
};
}