mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-26 17:46:26 +03:00
28 lines
455 B
JavaScript
28 lines
455 B
JavaScript
/** */
|
|
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() {}
|