blob: 567d9c408f0ff69ce227671ecbfc899954140530 [file] [log] [blame]
40 columns |
>>> block comment
library foo;
/* A long
* Comment
*/
/* And
* another...
*/
// Mixing it up
class C /* is cool */ {
/* int */ foo() => 42;
}
<<<
library foo;
/* A long
* Comment
*/
/* And
* another...
*/
// Mixing it up
class C /* is cool */ {
/* int */ foo() => 42;
}
>>> mixed doc and line comments
/// Copyright info
library foo;
/// Class comment
//TODO: implement
class C {
}
<<<
/// Copyright info
library foo;
/// Class comment
//TODO: implement
class C {}
>>> mixed comments
library foo;
/* Comment 1 */
// Comment 2
/* Comment 3 */
class C {}
<<<
library foo;
/* Comment 1 */
// Comment 2
/* Comment 3 */
class C {}