#1086. @compile-errors replaced by static errors
diff --git a/Language/Libraries_and_Scripts/Exports/reexport_lib.dart b/Language/Libraries_and_Scripts/Exports/reexport_lib.dart
index 9e0de9a..5249d06 100644
--- a/Language/Libraries_and_Scripts/Exports/reexport_lib.dart
+++ b/Language/Libraries_and_Scripts/Exports/reexport_lib.dart
@@ -6,5 +6,9 @@
 
 export "reexport_lib_p1.dart";
 export "reexport_lib_p2.dart";
+//     ^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
+
 
 var libVar = 1;
diff --git a/Language/Libraries_and_Scripts/Exports/syntax_t01_lib.dart b/Language/Libraries_and_Scripts/Exports/syntax_t01_lib.dart
index 2c32806..bae31cf 100644
--- a/Language/Libraries_and_Scripts/Exports/syntax_t01_lib.dart
+++ b/Language/Libraries_and_Scripts/Exports/syntax_t01_lib.dart
@@ -5,3 +5,6 @@
 
 library Exports_test_lib;
 #export "syntax_lib.dart";
+//^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/Exports/syntax_t04_lib.dart b/Language/Libraries_and_Scripts/Exports/syntax_t04_lib.dart
index 27e4c65..57db208 100644
--- a/Language/Libraries_and_Scripts/Exports/syntax_t04_lib.dart
+++ b/Language/Libraries_and_Scripts/Exports/syntax_t04_lib.dart
@@ -5,3 +5,6 @@
 
 library Exports_test_lib;
 export "syntax_lib.dart" show;
+//                           ^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/Exports/syntax_t05_lib.dart b/Language/Libraries_and_Scripts/Exports/syntax_t05_lib.dart
index e2db3c3..80c53fa 100644
--- a/Language/Libraries_and_Scripts/Exports/syntax_t05_lib.dart
+++ b/Language/Libraries_and_Scripts/Exports/syntax_t05_lib.dart
@@ -5,3 +5,6 @@
 
 library Exports_test_lib;
 export "syntax_lib.dart" hide;
+//                           ^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/Exports/syntax_t06_lib.dart b/Language/Libraries_and_Scripts/Exports/syntax_t06_lib.dart
index e88b84a..a26a45f 100644
--- a/Language/Libraries_and_Scripts/Exports/syntax_t06_lib.dart
+++ b/Language/Libraries_and_Scripts/Exports/syntax_t06_lib.dart
@@ -5,5 +5,11 @@
 
 library Exports_test_lib;
 export "syntax_lib.dart"
+//     ^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
 
-as prfx;
+  as prfx;
+//^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t01_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t01_lib.dart
index cb7a50b..668e7d2 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t01_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t01_lib.dart
@@ -2,5 +2,8 @@
 // for details. All rights reserved. Use of this source code is governed by a
 // BSD-style license that can be found in the LICENSE file.
 
-library Definition_Syntax_t01_lib;
-library Definition_Syntax_t01_lib;
+  library Definition_Syntax_t01_lib;
+  library Definition_Syntax_t01_lib;
+//^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t03_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t03_lib.dart
index 93d3cb3..e6bbe2a 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t03_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t03_lib.dart
@@ -5,4 +5,7 @@
 
 import 'definition_syntax_t02_lib.dart';
 
-library Definition_Syntax_t03_lib;
+  library Definition_Syntax_t03_lib;
+//^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t04_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t04_lib.dart
index e1eb281..87fa85b 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t04_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t04_lib.dart
@@ -4,5 +4,11 @@
 
 
 part "definition_syntax_t04_lib_p1.dart";
+//   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
 
-library Definition_Syntax_t04_lib;
+  library Definition_Syntax_t04_lib;
+//^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t04_lib_p1.dart b/Language/Libraries_and_Scripts/definition_syntax_t04_lib_p1.dart
index 4b16358..6297d18 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t04_lib_p1.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t04_lib_p1.dart
@@ -2,6 +2,4 @@
 // for details. All rights reserved. Use of this source code is governed by a
 // BSD-style license that can be found in the LICENSE file.
 
-
-//library definition_syntax_t04_lib_p1; // unnecessary?
 part of Definition_Syntax_t04_lib;
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t06_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t06_lib.dart
index f2dc3a7..350c3a8 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t06_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t06_lib.dart
@@ -5,4 +5,7 @@
 
 var x = 1;
 
-library Definition_Syntax_t06_lib;
+  library Definition_Syntax_t06_lib;
+//^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t07_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t07_lib.dart
index 4d6adc2..6c80c37 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t07_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t07_lib.dart
@@ -6,4 +6,7 @@
 library Definition_Syntax_t07_lib;
 
 part 'definition_syntax_t07_lib_p1.dart';
-import 'definition_syntax_t02_lib.dart';
+  import 'definition_syntax_t02_lib.dart';
+//^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t08_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t08_lib.dart
index 4eca31a..a8a12d0 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t08_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t08_lib.dart
@@ -7,4 +7,7 @@
 
 class A {}
 
-import 'definition_syntax_t02_lib.dart';
+  import 'definition_syntax_t02_lib.dart';
+//^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t09_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t09_lib.dart
index cd94fb7..911be1a 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t09_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t09_lib.dart
@@ -7,4 +7,7 @@
 
 class Foo {}
 
-part 'definition_syntax_t09_lib_p1.dart';
+  part 'definition_syntax_t09_lib_p1.dart';
+//^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t10_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t10_lib.dart
index 160166f..076301f 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t10_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t10_lib.dart
@@ -4,4 +4,7 @@
 
 
 library Definition_Syntax_t10_lib;
-library Definition_Syntax_t10_lib_too;
+  library Definition_Syntax_t10_lib_too;
+//^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t15_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t15_lib.dart
index 47db362..a2e0003 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t15_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t15_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 library (Libraries_and_Scripts_A03_t03_lib);
+//                                         ^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t16_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t16_lib.dart
index f61c206..7407517 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t16_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t16_lib.dart
@@ -3,5 +3,7 @@
 // BSD-style license that can be found in the LICENSE file.
 
 library Libraries_and_Scripts_A03_t04_lib
-
+//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
 int libVar = 1;
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t17_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t17_lib.dart
index 6c664d8..931a379 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t17_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t17_lib.dart
@@ -4,3 +4,6 @@
 
 
 library "Libraries_and_Scripts_A03_t05_lib".trim();
+//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t18_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t18_lib.dart
index f796952..a97aa2d 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t18_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t18_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 library;
+//     ^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t19_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t19_lib.dart
index 9767b4f..2b9f501 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t19_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t19_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 library "Libraries_and_Scripts_A03_t07_lib";
+//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t20_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t20_lib.dart
index cfe5e52..3148f49 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t20_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t20_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 library 'Libraries_and_Scripts_A03_t08_lib';
+//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t21_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t21_lib.dart
index d03d082..3d5f1e8 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t21_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t21_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 library 5 + 12;
+//      ^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t22_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t22_lib.dart
index eb5c657..89765a1 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t22_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t22_lib.dart
@@ -4,3 +4,6 @@
 
 
 library [Libraries_and_Scripts_A03_t10_lib];
+//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t23_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t23_lib.dart
index db7a328..bff030e 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t23_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t23_lib.dart
@@ -2,5 +2,7 @@
 // for details. All rights reserved. Use of this source code is governed by a
 // BSD-style license that can be found in the LICENSE file.
 
-
-library <Libraries_and_Scripts_A03_t11_lib>;
+  library <Libraries_and_Scripts_A03_t11_lib>;
+//^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t24_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t24_lib.dart
index 4127b72..6437935 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t24_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t24_lib.dart
@@ -4,3 +4,6 @@
 
 
 library {Libraries_and_Scripts_A03_t12_lib};
+//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t25_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t25_lib.dart
index 4589deb..4f6310b 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t25_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t25_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 library '''Libraries_and_Scripts_A03_t13_lib''';
+//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t26_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t26_lib.dart
index ffa7dcf..296ced3 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t26_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t26_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 library """Libraries_and_Scripts_A03_t14_lib""";
+//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t27_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t27_lib.dart
index b0bde69..74cac3e 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t27_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t27_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 library 13_Libraries_and_Scripts_A03_t15_lib;
+//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/definition_syntax_t29_lib.dart b/Language/Libraries_and_Scripts/definition_syntax_t29_lib.dart
index fdcaa4a..ea59cc4 100644
--- a/Language/Libraries_and_Scripts/definition_syntax_t29_lib.dart
+++ b/Language/Libraries_and_Scripts/definition_syntax_t29_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 library Libraries_унд_скриптз_A03_t15_lib;
+//                ^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t03_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t03_lib.dart
index b6a5c48..19be2e1 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t03_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t03_lib.dart
@@ -5,4 +5,7 @@
 
 library Libraries_and_Scripts_A01_t03;
 
-"string literal"
+  "string literal"
+//^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t04_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t04_lib.dart
index d583655..8c3706f 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t04_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t04_lib.dart
@@ -5,4 +5,7 @@
 
 library Libraries_and_Scripts_A01_t04;
 
-100
+  100
+//^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t05_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t05_lib.dart
index 5d07743..e71a8d4 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t05_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t05_lib.dart
@@ -5,4 +5,7 @@
 
 library Libraries_and_Scripts_A01_t05;
 
-{'k1': 1, 'k2': 2}
+  {'k1': 1, 'k2': 2}
+//^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t06_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t06_lib.dart
index 3207089..f0c55ee 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t06_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t06_lib.dart
@@ -7,4 +7,7 @@
 
 f() {}
 
-f()
+  f()
+//^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t07_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t07_lib.dart
index a4aafb9..7f6328f 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t07_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t07_lib.dart
@@ -5,4 +5,7 @@
 
 library Libraries_and_Scripts_A01_t07;
 
-2 < 3;
+  2 < 3;
+//^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t08_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t08_lib.dart
index fdd7247..8cf4e92 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t08_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t08_lib.dart
@@ -5,7 +5,11 @@
 
 library Libraries_and_Scripts_A01_t08;
 
-{
+  {
+//^
+// [analyzer] unspecified
+// [cfe] unspecified
+
   var x = 1;
   x += 1;
 }
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t09_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t09_lib.dart
index f95c544..512e9ed 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t09_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t09_lib.dart
@@ -5,4 +5,7 @@
 
 library Libraries_and_Scripts_A01_t09;
 
-if (true) false;
+  if (true) false;
+//^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t10_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t10_lib.dart
index 71ef333..4d39e68 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t10_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t10_lib.dart
@@ -5,4 +5,7 @@
 
 library Libraries_and_Scripts_A01_t10;
 
-for (;;);
+  for (;;);
+//^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t11_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t11_lib.dart
index 584a824..8b6a904 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t11_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t11_lib.dart
@@ -5,4 +5,7 @@
 
 library Libraries_and_Scripts_A01_t11;
 
-while (false) {1 + 1;}
+  while (false) {1 + 1;}
+//^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t12_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t12_lib.dart
index abe65d1..b1d8a33 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t12_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t12_lib.dart
@@ -5,6 +5,12 @@
 
 library Libraries_and_Scripts_A01_t12;
 
-try {
+  try {
+//^^^
+// [analyzer] unspecified
+// [cfe] unspecified
   var x = 0;
 } catch (e) {}
+//^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t13_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t13_lib.dart
index 5d15371..d233881 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t13_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t13_lib.dart
@@ -5,4 +5,7 @@
 
 library Libraries_and_Scripts_A01_t13;
 
-return 0;
+  return 0;
+//^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t14_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t14_lib.dart
index 40c8e52..2bc91ca 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t14_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t14_lib.dart
@@ -5,4 +5,7 @@
 
 library Libraries_and_Scripts_A01_t14;
 
-throw 2;
+  throw 2;
+//^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t15_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t15_lib.dart
index 7b673e6..1cb184a 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t15_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t15_lib.dart
@@ -5,4 +5,7 @@
 
 library Libraries_and_Scripts_A01_t15;
 
-label: var x  = 0;
+  label: var x  = 0;
+//^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t16_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t16_lib.dart
index 40b6279..6a049b0 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t16_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t16_lib.dart
@@ -6,5 +6,9 @@
 library Libraries_and_Scripts_A01_t16;
 
 var x;
-,
+  ,
+//^
+// [analyzer] unspecified
+// [cfe] unspecified
+
 var y;
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t17_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t17_lib.dart
index 48c525d..1e40877 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t17_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t17_lib.dart
@@ -7,6 +7,9 @@
 
 class C {}
 
-:
+  :
+//^
+// [analyzer] unspecified
+// [cfe] unspecified
 
 class D {}
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t18_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t18_lib.dart
index ab82f94..11b006b 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t18_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t18_lib.dart
@@ -9,6 +9,10 @@
 
 f2() {}
 
-\
+  \
+//^
+// [analyzer] unspecified
+// [cfe] unspecified
+
 
 f3() {}
diff --git a/Language/Libraries_and_Scripts/top_level_syntax_t19_lib.dart b/Language/Libraries_and_Scripts/top_level_syntax_t19_lib.dart
index 6dfc9dd..649e62a 100644
--- a/Language/Libraries_and_Scripts/top_level_syntax_t19_lib.dart
+++ b/Language/Libraries_and_Scripts/top_level_syntax_t19_lib.dart
@@ -9,6 +9,9 @@
 
 f2() {}
 
-12somesymbols###moresymbols346
+  12somesymbols###moresymbols346
+//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
 
 f3() {}
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/assert_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/assert_lib.dart
index 4e04c27..df20a3b 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/assert_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/assert_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of assert;
+//      ^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/break_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/break_lib.dart
index 6721531..8bdd6d2 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/break_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/break_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of break;
+//      ^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/case_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/case_lib.dart
index dd13ad4..b026ecb 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/case_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/case_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of case;
+//      ^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/catch_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/catch_lib.dart
index b8d0efd..e7b2bb4 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/catch_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/catch_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of catch;
+//      ^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/class_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/class_lib.dart
index 0377c83..af4ccb4 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/class_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/class_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of class;
+//      ^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/const_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/const_lib.dart
index 089ebed..8ec8746 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/const_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/const_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of const;
+//      ^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/continue_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/continue_lib.dart
index f4daf17..2b5aea1 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/continue_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/continue_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of continue;
+//      ^^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/default_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/default_lib.dart
index a120fad..934e16d 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/default_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/default_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of default;
+//      ^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/do_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/do_lib.dart
index dcb4812..42d1b53 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/do_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/do_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of do;
+//      ^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/else_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/else_lib.dart
index b1922a3..6ad56b6 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/else_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/else_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of else;
+//      ^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/enum_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/enum_lib.dart
index 47cade1..41d4ff9 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/enum_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/enum_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of enum;
+//      ^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/extends_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/extends_lib.dart
index 3075abb..a37e44f 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/extends_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/extends_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of extends;
+//      ^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/false_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/false_lib.dart
index caf9f51..650635c 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/false_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/false_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of false;
+//      ^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/final_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/final_lib.dart
index 2c2597a..814e347 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/final_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/final_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of final;
+//      ^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/finally_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/finally_lib.dart
index 2b66879..57b00d7 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/finally_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/finally_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of finally;
+//      ^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/for_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/for_lib.dart
index c857c17..c30a6b5 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/for_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/for_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of for;
+//      ^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/if_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/if_lib.dart
index 8b76b8d..52fb361 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/if_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/if_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of if;
+//      ^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/in_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/in_lib.dart
index 0dd2147..b81a445 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/in_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/in_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of in;
+//      ^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/is_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/is_lib.dart
index ee1df07..d8e5553 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/is_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/is_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of is;
+//      ^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/new_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/new_lib.dart
index 62bc83a..6729714 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/new_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/new_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of new;
+//      ^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/null_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/null_lib.dart
index e42dd94..f75842b 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/null_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/null_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of null;
+//      ^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/rethrow_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/rethrow_lib.dart
index e2aaf2c..50667d1 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/rethrow_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/rethrow_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of rethrow;
+//      ^^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/return_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/return_lib.dart
index edfb875..90d98d1 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/return_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/return_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of return;
+//      ^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/super_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/super_lib.dart
index aa2598d..bc6ed72 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/super_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/super_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of super;
+//      ^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/switch_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/switch_lib.dart
index 753f559..ba2be84 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/switch_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/switch_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of switch;
+//      ^^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/this_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/this_lib.dart
index 0a45293..5398e7b 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/this_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/this_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of this;
+//      ^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/throw_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/throw_lib.dart
index 5a2a013..88be69c 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/throw_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/throw_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of throw;
+//      ^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/true_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/true_lib.dart
index 401ba83..1ad3420 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/true_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/true_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of true;
+//      ^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/try_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/try_lib.dart
index 523d571..6b356d4 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/try_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/try_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of try;
+//      ^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/var_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/var_lib.dart
index 9700b33..5b2df2d 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/var_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/var_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of var;
+//      ^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/void_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/void_lib.dart
index bddc39f..4c6668b 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/void_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/void_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of void;
+//      ^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/while_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/while_lib.dart
index 3f4bf89..41b5905 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/while_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/while_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of while;
+//      ^^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file
diff --git a/Language/Reference/Lexical_Rules/Reserved_Words/with_lib.dart b/Language/Reference/Lexical_Rules/Reserved_Words/with_lib.dart
index bd92394..324272f 100644
--- a/Language/Reference/Lexical_Rules/Reserved_Words/with_lib.dart
+++ b/Language/Reference/Lexical_Rules/Reserved_Words/with_lib.dart
@@ -3,3 +3,6 @@
 // BSD-style license that can be found in the LICENSE file.
 
 part of with;
+//      ^^^^
+// [analyzer] unspecified
+// [cfe] unspecified
\ No newline at end of file