TypeScript/tests/cases/fourslash/isInMultiLineCommentInTemplateLiteral.ts

27 lines
412 B
TypeScript
Raw Normal View History

2017-08-17 02:36:50 +02:00
/// <reference path="fourslash.ts" />
// @Filename: file.jsx
//// `
//// // /*0*/
//// /* /*1*/ */
//// /**
//// * /*2*/
//// */
//// foo()
//// // /*3*/
//// /* /*4*/ */
//// /**
//// * /*5*/
//// */
//// `
//// `
//// // /*6*/
//// /* /*7*/ */
//// /**
//// * /*8*/
//// */
for (let i = 0; i < 9; ++i) {
goTo.marker(i.toString());
verify.not.isInCommentAtPosition();
2017-08-17 02:36:50 +02:00
}