Open
Description
/** Doc comment */
@a @b
external f: unit => unit = "f"
/* Normal comment */
@a @b
external f: unit => unit = "f"
/**
Doc comment Doc comment Doc comment Doc comment Doc comment
Doc comment Doc comment Doc comment Doc comment Doc comment
*/
@a @b
external f: unit => unit = "f"
/*
Normal comment Normal comment Normal comment Normal comment Normal comment
Normal comment Normal comment Normal comment Normal comment Normal comment
*/
@a @b
external f: unit => unit = "f"
gets reformatted to
/** Doc comment */ @a @b
external f: unit => unit = "f"
/* Normal comment */
@a @b
external f: unit => unit = "f"
/**
Doc comment Doc comment Doc comment Doc comment Doc comment
Doc comment Doc comment Doc comment Doc comment Doc comment
*/
@a
@b
external f: unit => unit = "f"
/*
Normal comment Normal comment Normal comment Normal comment Normal comment
Normal comment Normal comment Normal comment Normal comment Normal comment
*/
@a @b
external f: unit => unit = "f"