TypeScript/tests/cases/fourslash/formatDocumentWithJSDoc.ts

30 lines
416 B
TypeScript
Raw Normal View History

2018-10-25 01:14:52 +02:00
/// <reference path="fourslash.ts" />
/////**
//// * JSDoc for things
//// */
////function f() {
//// /** more
//// jsdoc */
//// var t;
//// /**
//// * multiline
//// */
//// var multiline;
////}
format.document();
verify.currentFileContentIs(`/**
* JSDoc for things
*/
function f() {
/** more
jsdoc */
var t;
/**
* multiline
*/
var multiline;
}`);