| Index: test/comments/top_level.unit
|
| diff --git a/test/comments/top_level.unit b/test/comments/top_level.unit
|
| index 24dc6f797e1c7513f4628aa47c617737039540ab..6eb7405422732c2d97c84edfdd9bf767608ff030 100644
|
| --- a/test/comments/top_level.unit
|
| +++ b/test/comments/top_level.unit
|
| @@ -164,4 +164,24 @@ part 'a.dart';
|
| >>> before library name
|
| library/* c */foo;
|
| <<<
|
| -library /* c */ foo;
|
| +library /* c */ foo;
|
| +>>> block comment before "." in library
|
| +library a/**/.b.c;
|
| +<<<
|
| +library a /**/ .b.c;
|
| +>>> block comment after "." in library
|
| +library a./**/b.c;
|
| +<<<
|
| +library a. /**/ b.c;
|
| +>>> line comment before "." in library
|
| +library a//
|
| +.b.c;
|
| +<<<
|
| +library a //
|
| + .b.c;
|
| +>>> line comment after "." in library
|
| +library a.//
|
| +b.c;
|
| +<<<
|
| +library a. //
|
| + b.c;
|
|
|