TypeScript/tests/cases/fourslash/toggleLineComment9.ts

18 lines
565 B
TypeScript
Raw Normal View History

2020-05-27 04:26:28 +02:00
// If at least one line is not commented then comment all lines again.
2020-02-25 22:58:14 +01:00
// TODO: Not sure about this one. The default behavior for line comment is to add en extra
// layer of comments (see toggleLineComment4 test). For jsx this doesn't work right as it's actually
// multiline comment. Figure out what to do.
//@Filename: file.tsx
//// const a = <div>
//// {/*[|<div>*/}
//// SomeText
//// {/*</div>|]*/}
//// </div>;
verify.toggleLineComment(
`const a = <div>
{/*<div>*/}
{/* SomeText*/}
{/*</div>*/}
</div>;`);