swc/crates/jsdoc/tests/fixtures/emptycomments.js

28 lines
455 B
JavaScript
Raw Normal View History

2020-08-14 12:20:25 +03:00
/** */
function first() {}
/** */
function second() {}
// the next comment must contain a single hard tab (\t) character
/** */
function third() {}
// the next comment must contain at least two hard tab (\t) characters
/** */
function fourth() {}
// the next comment must contain one newline (\n) character
/**
*/
function fifth() {}
// the next comment must contain multiple newline (\n) characters
/**
*
*
*
*
*/
function sixth() {}