TypeScript/tests/cases/compiler/arrayLiteralComments.ts

14 lines
226 B
TypeScript

var testArrayWithFunc = [
// Function comment
function() {
let x = 1;
},
// String comment
'1',
// Numeric comment
2,
// Object comment
{ a: 1 },
// Array comment
[1, 2, 3]
]