Chromium Code Reviews| Index: test/multitest.dart | 
| diff --git a/test/multitest.dart b/test/multitest.dart | 
| index beb7114e51a780d88db87f3ab566e9759f0f54f6..c5fcf990a413d6563ea9c2ddc2bb3c90993751c3 100644 | 
| --- a/test/multitest.dart | 
| +++ b/test/multitest.dart | 
| @@ -152,7 +152,8 @@ class _Annotation { | 
| if (!line.contains('///')) { | 
| return null; | 
| } | 
| - var parts = line.split('///')[1] | 
| + var parts = line | 
| + .split('///')[1] | 
| .split(':') | 
| .map((s) => s.trim()) | 
| .where((s) => s.length > 0) |