| Index: test/comments/top_level.unit
|
| diff --git a/test/comments/top_level.unit b/test/comments/top_level.unit
|
| index 6eb7405422732c2d97c84edfdd9bf767608ff030..95be10f5debc77cb67adce821538c1b5c3d45252 100644
|
| --- a/test/comments/top_level.unit
|
| +++ b/test/comments/top_level.unit
|
| @@ -184,4 +184,23 @@ library a.//
|
| b.c;
|
| <<<
|
| library a. //
|
| - b.c;
|
| + b.c;
|
| +>>> inline block comment between different kinds of directives
|
| +library a; /* comment */ import 'b.dart';
|
| +<<<
|
| +library a;
|
| +
|
| +/* comment */
|
| +import 'b.dart';
|
| +>>> inline block comment between directives
|
| +import 'a.dart'; /* comment */ import 'b.dart';
|
| +<<<
|
| +import 'a.dart';
|
| +/* comment */
|
| +import 'b.dart';
|
| +>>> block comment between directives
|
| +import 'a.dart'; /* comment */
|
| +import 'b.dart';
|
| +<<<
|
| +import 'a.dart'; /* comment */
|
| +import 'b.dart';
|
|
|