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

15 lines
149 B
TypeScript

// @removeComments: false
const a = 1;
const f1 = () =>
`${
// a
a
}a`;
const f2 = () =>
`${
// a
a
}`;