TypeScript/tests/cases/fourslash/docCommentTemplateInSingleLineComment.ts
2015-08-03 14:28:21 -07:00

14 lines
No EOL
457 B
TypeScript

/// <reference path='fourslash.ts' />
// @Filename: justAComment.ts
//// // We want to check off-by-one errors in assessing the end of the comment, so we check twice,
//// // first with a trailing space and then without.
//// // /*0*/
//// // /*1*/
//// // We also want to check EOF handling at the end of a comment
//// // /*2*/
test.markers().forEach((marker) => {
goTo.position(marker.position);
verify.noDocCommentTemplate();
});