Version 2.0.0-dev.69.2

Cherry-pick f2402b3c08b849062707ec06e6f43abb182e2196 to dev
Cherry-pick d283ad8291b03ba9fdab64d08282bd1f44dd4d4c to dev
Cherry-pick d715c5e052de7ee28978ed01534a500fab0f4f05 to dev
Cherry-pick e9fa236d6be2672e85d2cfe7817db4b244b3fd92 to dev
Cherry-pick 5c9c90f7e1d3377d48955d3f540c4d2bf23616fb to dev
Cherry-pick 128ecff0c573d7886f8a42595527fd6cc8e12001 to dev
Cherry-pick 6bc1cdb5b149036f6610605921e28215fabe3d84 to dev
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a15d952..2116487 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 2.0.0-dev.69.2
+
+### Core library changes
+* Remove deprecated UPPER_CASE constant names. Use the lower-case names only
+  from now on. Example `HTML_ESCAPE` is now only `htmlEscape`.
+
 ## 2.0.0-dev.69.1
 
 Cherry-pick 11f3c57e9c09c62c46aaf7824c3ffdc8debb3960 to dev
diff --git a/DEPS b/DEPS
index 6afb6ba..9291205 100644
--- a/DEPS
+++ b/DEPS
@@ -103,7 +103,7 @@
   "mockito_tag": "d39ac507483b9891165e422ec98d9fb480037c8b",
   "mustache4dart_tag" : "v2.1.2",
   "oauth2_tag": "1.2.1",
-  "observatory_pub_packages_rev": "129400266c6839365b9e93147f53fc0970e1d440",
+  "observatory_pub_packages_rev": "0894122173b0f98eb08863a7712e78407d4477bc",
   "package_config_tag": "1.0.3",
   "package_resolver_tag": "1.0.3",
   "path_tag": "1.5.1",
diff --git a/foo b/foo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/foo
diff --git a/pkg/analysis_server/lib/src/plugin/plugin_manager.dart b/pkg/analysis_server/lib/src/plugin/plugin_manager.dart
index ba63c49..65d00d4 100644
--- a/pkg/analysis_server/lib/src/plugin/plugin_manager.dart
+++ b/pkg/analysis_server/lib/src/plugin/plugin_manager.dart
@@ -1072,10 +1072,8 @@
       return false;
     }
     channel = info._createChannel();
-    // TODO(brianwilkerson) Determine if await is necessary, if so, change the
-    // return type of `channel.listen` to `Future<void>`.
-    await (channel.listen(handleResponse, handleNotification,
-        onDone: handleOnDone, onError: handleOnError) as dynamic);
+    await channel.listen(handleResponse, handleNotification,
+        onDone: handleOnDone, onError: handleOnError);
     if (channel == null) {
       // If there is an error when starting the isolate, the channel will invoke
       // handleOnDone, which will cause `channel` to be set to `null`.
diff --git a/pkg/analysis_server/lib/src/server/http_server.dart b/pkg/analysis_server/lib/src/server/http_server.dart
index 783cb9c..c5cff7d 100644
--- a/pkg/analysis_server/lib/src/server/http_server.dart
+++ b/pkg/analysis_server/lib/src/server/http_server.dart
@@ -136,9 +136,7 @@
     if (getHandler == null) {
       getHandler = new DiagnosticsSite(socketServer, _printBuffer);
     }
-    // TODO(brianwilkerson) Determine if await is necessary, if so, change the
-    // return type of [AbstractGetHandler.handleGetRequest] to `Future<void>`.
-    await (getHandler.handleGetRequest(request) as dynamic);
+    await getHandler.handleGetRequest(request);
   }
 
   /**
diff --git a/pkg/analysis_server/lib/src/status/pages.dart b/pkg/analysis_server/lib/src/status/pages.dart
index e727bf5..f9c7e06 100644
--- a/pkg/analysis_server/lib/src/status/pages.dart
+++ b/pkg/analysis_server/lib/src/status/pages.dart
@@ -38,9 +38,7 @@
     } else {
       buf.writeln('<div>');
     }
-    // TODO(brianwilkerson) Determine if await is necessary, if so, change the
-    // return type of [gen] to `Future<void>`.
-    await (gen() as dynamic);
+    await gen();
     buf.writeln('</div>');
   }
 
@@ -62,9 +60,7 @@
     // TODO(brianwilkerson) Determine whether this await is necessary.
     await null;
     buf.clear();
-    // TODO(brianwilkerson) Determine if await is necessary, if so, change the
-    // return type of [generatePage] to `Future<void>`.
-    await (generatePage(params) as dynamic);
+    await generatePage(params);
     return buf.toString();
   }
 
diff --git a/pkg/analyzer/lib/src/dart/analysis/library_context.dart b/pkg/analyzer/lib/src/dart/analysis/library_context.dart
index fe326f3..5d5c629 100644
--- a/pkg/analyzer/lib/src/dart/analysis/library_context.dart
+++ b/pkg/analyzer/lib/src/dart/analysis/library_context.dart
@@ -93,7 +93,7 @@
       }
 
       logger.run('Append library files', () {
-        appendLibraryFiles(targetLibrary);
+        return appendLibraryFiles(targetLibrary);
       });
 
       Set<String> libraryUrisToLink = new Set<String>();
diff --git a/pkg/analyzer_cli/lib/src/build_mode.dart b/pkg/analyzer_cli/lib/src/build_mode.dart
index b072546..d83ab5e 100644
--- a/pkg/analyzer_cli/lib/src/build_mode.dart
+++ b/pkg/analyzer_cli/lib/src/build_mode.dart
@@ -144,7 +144,7 @@
     errorSink = errorBuffer;
     outSink = outBuffer;
     exitHandler = (int exitCode) {
-      throw new StateError('Exit called: $exitCode');
+      return throw new StateError('Exit called: $exitCode');
     };
     await super.run();
   }
diff --git a/pkg/dev_compiler/lib/src/analyzer/code_generator.dart b/pkg/dev_compiler/lib/src/analyzer/code_generator.dart
index c39397d..1140233 100644
--- a/pkg/dev_compiler/lib/src/analyzer/code_generator.dart
+++ b/pkg/dev_compiler/lib/src/analyzer/code_generator.dart
@@ -6381,8 +6381,8 @@
         .replaceAll(path.separator, encodedSeparator);
   } else {
     // We don't have a unique name.
-    throw 'Invalid library root. $libraryRoot does not contain ${uri
-        .toFilePath()}';
+    throw 'Invalid library root. $libraryRoot does not contain '
+        '${uri.toFilePath()}';
   }
   return pathToJSIdentifier(qualifiedPath);
 }
@@ -6395,8 +6395,8 @@
 
   var filePath = uri.toFilePath();
   if (!path.isWithin(libraryRoot, filePath)) {
-    throw 'Invalid library root. $libraryRoot does not contain ${uri
-        .toFilePath()}';
+    throw 'Invalid library root. $libraryRoot does not contain '
+        '${uri.toFilePath()}';
   }
   // Relative path to the library.
   return path.relative(filePath, from: libraryRoot);
diff --git a/pkg/dev_compiler/test/sourcemap/common.dart b/pkg/dev_compiler/test/sourcemap/common.dart
index c4868c3..c934036 100644
--- a/pkg/dev_compiler/test/sourcemap/common.dart
+++ b/pkg/dev_compiler/test/sourcemap/common.dart
@@ -2,8 +2,6 @@
 // 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.
 
-import 'dart:async' show Future;
-
 import 'dart:io';
 
 import 'package:path/path.dart' as path;
@@ -21,15 +19,14 @@
 abstract class ChainContextWithCleanupHelper extends ChainContext {
   Map<TestDescription, Data> cleanupHelper = {};
 
-  Future<void> cleanUp(TestDescription description, Result result) {
+  void cleanUp(TestDescription description, Result result) {
     if (debugging() && result.outcome != Expectation.Pass) {
       print("Not cleaning up: Running in debug-mode for non-passing test.");
-      return null;
+      return;
     }
 
     Data data = cleanupHelper.remove(description);
     data?.outDir?.deleteSync(recursive: true);
-    return null;
   }
 
   bool debugging() => false;
diff --git a/pkg/dev_compiler/tool/input_sdk/patch/mirrors_patch.dart b/pkg/dev_compiler/tool/input_sdk/patch/mirrors_patch.dart
index dec3d20..e3b015b 100644
--- a/pkg/dev_compiler/tool/input_sdk/patch/mirrors_patch.dart
+++ b/pkg/dev_compiler/tool/input_sdk/patch/mirrors_patch.dart
@@ -6,6 +6,7 @@
 
 import 'dart:_js_helper' show patch;
 import 'dart:_js_mirrors' as js;
+import 'dart:_runtime' as dart;
 
 @patch
 class MirrorSystem {
@@ -43,9 +44,39 @@
 }
 
 @patch
-TypeMirror reflectType(Type key) {
-  if (key == dynamic) {
-    return currentMirrorSystem().dynamicType;
+TypeMirror reflectType(Type type, [List<Type> typeArguments]) {
+  if (typeArguments != null) {
+    type = _instantiateClass(type, typeArguments);
   }
-  return js.reflectType(key);
+  return js.reflectType(type);
+}
+
+/// Instantiates the generic class [type] with [typeArguments] and returns the
+/// result.
+///
+/// [type] may be instantiated with type arguments already. In that case, they
+/// are ignored. For example calling this function with `(List<int>, [String])`
+/// and `(List<dynamic>, [String])` will produce `List<String>` in both cases.
+Type _instantiateClass(Type type, List<Type> typeArguments) {
+  var unwrapped = dart.unwrapType(type);
+  var genericClass = dart.getGenericClass(unwrapped);
+  if (genericClass == null) {
+    throw ArgumentError('Type `$type` must be generic to apply '
+        'type arguments: `$typeArguments`.');
+  }
+
+  var typeArgsLenth = typeArguments.length;
+  var unwrappedArgs = List(typeArgsLenth);
+  for (int i = 0; i < typeArgsLenth; i++) {
+    unwrappedArgs[i] = dart.unwrapType(typeArguments[i]);
+  }
+  var typeFormals = dart.getGenericTypeFormals(genericClass);
+  if (typeFormals.length != typeArgsLenth) {
+    throw ArgumentError('Type `$type` has ${typeFormals.length} type '
+        'parameters, but $typeArgsLenth type arguments were '
+        'passed: `$typeArguments`.');
+  }
+  // TODO(jmesserly): this does not validate bounds, as we don't have them
+  // available at runtime. Consider storing them when dart:mirrors is enabled.
+  return dart.wrapType(dart.instantiateClass(genericClass, unwrappedArgs));
 }
diff --git a/pkg/front_end/lib/src/fasta/fasta_codes_generated.dart b/pkg/front_end/lib/src/fasta/fasta_codes_generated.dart
index 5bd77ea..fc453d5 100644
--- a/pkg/front_end/lib/src/fasta/fasta_codes_generated.dart
+++ b/pkg/front_end/lib/src/fasta/fasta_codes_generated.dart
@@ -5827,17 +5827,6 @@
         r"""Try removing the default value or making the parameter optional.""");
 
 // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
-const Code<Null> codeReturnFromVoidFunction = messageReturnFromVoidFunction;
-
-// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
-const MessageCode messageReturnFromVoidFunction = const MessageCode(
-    "ReturnFromVoidFunction",
-    analyzerCode: "RETURN_OF_INVALID_TYPE",
-    dart2jsCode: "*fatal*",
-    severity: Severity.errorLegacyWarning,
-    message: r"""Can't return a value from a void function.""");
-
-// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
 const Code<Null> codeReturnTypeFunctionExpression =
     messageReturnTypeFunctionExpression;
 
@@ -6877,14 +6866,6 @@
         r"""Try removing the keyword 'var', or replacing it with the name of the return type.""");
 
 // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
-const Code<Null> codeVoidExpression = messageVoidExpression;
-
-// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
-const MessageCode messageVoidExpression = const MessageCode("VoidExpression",
-    severity: Severity.errorLegacyWarning,
-    message: r"""This expression has type 'void' and can't be used.""");
-
-// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
 const Template<
     Message Function(
         String string,
diff --git a/pkg/front_end/lib/src/fasta/kernel/kernel_expression_generator.dart b/pkg/front_end/lib/src/fasta/kernel/kernel_expression_generator.dart
index c57370a..0b4dadd 100644
--- a/pkg/front_end/lib/src/fasta/kernel/kernel_expression_generator.dart
+++ b/pkg/front_end/lib/src/fasta/kernel/kernel_expression_generator.dart
@@ -786,11 +786,8 @@
   @override
   Expression _finish(
       Expression body, ComplexAssignmentJudgment complexAssignment) {
-    int offset = offsetForToken(token);
     return super._finish(
-        makeLet(
-            receiverVariable, makeLet(indexVariable, body)..fileOffset = offset)
-          ..fileOffset = offset,
+        makeLet(receiverVariable, makeLet(indexVariable, body)),
         complexAssignment);
   }
 
@@ -1050,9 +1047,7 @@
   @override
   Expression _finish(
       Expression body, ComplexAssignmentJudgment complexAssignment) {
-    return super._finish(
-        makeLet(indexVariable, body)..fileOffset = offsetForToken(token),
-        complexAssignment);
+    return super._finish(makeLet(indexVariable, body), complexAssignment);
   }
 
   @override
diff --git a/pkg/front_end/lib/src/fasta/kernel/kernel_shadow_ast.dart b/pkg/front_end/lib/src/fasta/kernel/kernel_shadow_ast.dart
index 5e966d5..71d3160 100644
--- a/pkg/front_end/lib/src/fasta/kernel/kernel_shadow_ast.dart
+++ b/pkg/front_end/lib/src/fasta/kernel/kernel_shadow_ast.dart
@@ -39,7 +39,6 @@
 
 import '../fasta_codes.dart'
     show
-        messageVoidExpression,
         noLength,
         templateCantInferTypeDueToCircularity,
         templateCantUseSuperBoundedTypeForInstanceCreation,
@@ -440,8 +439,7 @@
       variable.type = inferredType;
     }
     for (var judgment in cascadeJudgments) {
-      inferrer.inferExpression(factory, judgment, const UnknownType(), false,
-          isVoidAllowed: true);
+      inferrer.inferExpression(factory, judgment, const UnknownType(), false);
     }
     inferrer.listener.cascadeExpression(this, fileOffset, inferredType);
     return null;
@@ -1178,8 +1176,7 @@
             this.variable.type,
             syntheticAssignment.rhs,
             syntheticAssignment.rhs.fileOffset,
-            template: templateForInLoopElementTypeNotAssignable,
-            isVoidAllowed: true);
+            template: templateForInLoopElementTypeNotAssignable);
         if (syntheticAssignment is PropertyAssignmentJudgment) {
           syntheticAssignment._handleWriteContravariance(
               inferrer, inferrer.thisType);
@@ -1482,10 +1479,6 @@
       inferrer.inferExpression(factory, rightJudgment, typeContext, _forceLub);
     }
     var rhsType = rightJudgment.inferredType;
-    if (rhsType is VoidType) {
-      inferrer.helper?.addProblem(
-          messageVoidExpression, rightJudgment.fileOffset, noLength);
-    }
     // - Let T = greatest closure of K with respect to `?` if K is not `_`, else
     //   UP(t0, t1)
     // - Then the inferred type is T.
@@ -2480,7 +2473,7 @@
       Factory<Expression, Statement, Initializer, Type> factory) {
     var judgment = this.judgment;
     var closureContext = inferrer.closureContext;
-    DartType typeContext = !closureContext.isGenerator
+    var typeContext = !closureContext.isGenerator
         ? closureContext.returnOrYieldContext
         : const UnknownType();
     DartType inferredType;
@@ -2494,8 +2487,8 @@
     // inferred type of the closure.  TODO(paulberry): is this what we want
     // for Fasta?
     if (judgment != null) {
-      closureContext.handleReturn(inferrer, inferredType, expression,
-          fileOffset, !identical(returnKeyword?.lexeme, "return"));
+      closureContext.handleReturn(
+          inferrer, inferredType, expression, fileOffset);
     }
     inferrer.listener
         .returnStatement(this, fileOffset, returnKeyword, null, semicolon);
@@ -3228,8 +3221,7 @@
       Factory<Expression, Statement, Initializer, Type> factory,
       kernel.Expression expression,
       DartType typeContext,
-      bool typeNeeded,
-      {bool isVoidAllowed: false}) {
+      bool typeNeeded) {
     // `null` should never be used as the type context.  An instance of
     // `UnknownType` should be used instead.
     assert(typeContext != null);
@@ -3255,34 +3247,7 @@
       // so that the type hierarchy will be simpler (which may speed up "is"
       // checks).
       expression.infer(this, factory, typeContext);
-      DartType inferredType = expression.inferredType;
-      if (inferredType is VoidType && !isVoidAllowed) {
-        TreeNode parent = expression.parent;
-        if (parent is ReturnStatement ||
-            parent is ExpressionStatement ||
-            parent is AsExpression) {
-          return inferredType;
-        } else if (parent is ForStatement &&
-            parent.updates.contains(expression)) {
-          return inferredType;
-        } else if (parent is VariableDeclaration) {
-          TreeNode grandParent = parent.parent;
-          if (grandParent is ForStatement &&
-              parent.name == null &&
-              grandParent.variables.contains(parent)) {
-            return inferredType;
-          }
-        } else if (parent is ConditionalExpression) {
-          if (parent.then == expression || parent.otherwise == expression) {
-            return inferredType;
-          }
-        } else if (parent is DeferredCheckJudgment) {
-          return inferredType;
-        }
-        helper?.addProblem(
-            messageVoidExpression, expression.fileOffset, noLength);
-      }
-      return inferredType;
+      return expression.inferredType;
     } else {
       // Encountered an expression type for which type inference is not yet
       // implemented, so just infer dynamic for now.
diff --git a/pkg/front_end/lib/src/fasta/rewrite_severity.dart b/pkg/front_end/lib/src/fasta/rewrite_severity.dart
index 936bccc..3961294 100644
--- a/pkg/front_end/lib/src/fasta/rewrite_severity.dart
+++ b/pkg/front_end/lib/src/fasta/rewrite_severity.dart
@@ -8,15 +8,6 @@
 
 Severity rewriteSeverity(
     Severity severity, msg.Code<Object> code, Uri fileUri) {
-  if (code == msg.codeVoidExpression) {
-    // TODO(ahe): Remove this special case when
-    // [https://github.com/dart-lang/dartdoc/issues/1724] is fixed.
-    String path = fileUri.path;
-    if (path.endsWith("/third_party/pkg/dartdoc/lib/src/model.dart") ||
-        path.endsWith("/third_party/pkg/dartdoc/lib/src/io_utils.dart")) {
-      return Severity.ignored;
-    }
-  }
   if (severity != Severity.ignored) return severity;
   String path = fileUri.path;
   String fastaPath = "/pkg/front_end/lib/src/fasta/";
diff --git a/pkg/front_end/lib/src/fasta/type_inference/type_inferrer.dart b/pkg/front_end/lib/src/fasta/type_inference/type_inferrer.dart
index 650c384..5ded6a7b 100644
--- a/pkg/front_end/lib/src/fasta/type_inference/type_inferrer.dart
+++ b/pkg/front_end/lib/src/fasta/type_inference/type_inferrer.dart
@@ -68,28 +68,7 @@
 
 import '../builder/builder.dart' show PrefixBuilder;
 
-import '../fasta_codes.dart'
-    show
-        LocatedMessage,
-        Message,
-        Template,
-        messageReturnFromVoidFunction,
-        messageVoidExpression,
-        noLength,
-        templateArgumentTypeNotAssignable,
-        templateImplicitCallOfNonMethod,
-        templateInvalidAssignment,
-        templateInvalidCastFunctionExpr,
-        templateInvalidCastLiteralList,
-        templateInvalidCastLiteralMap,
-        templateInvalidCastLocalFunction,
-        templateInvalidCastNewExpr,
-        templateInvalidCastStaticMethod,
-        templateInvalidCastTopLevelFunction,
-        templateMixinInferenceNoMatchingClass,
-        templateUndefinedGetter,
-        templateUndefinedMethod,
-        templateUndefinedSetter;
+import '../fasta_codes.dart';
 
 import '../kernel/factory.dart' show Factory;
 
@@ -187,8 +166,6 @@
   /// this typing expectation in `Stream` or `Iterator`, as appropriate.
   final DartType returnOrYieldContext;
 
-  final DartType declaredReturnType;
-
   final bool _needToInferReturnType;
 
   final bool _needImplicitDowncasts;
@@ -210,7 +187,6 @@
       DartType returnContext,
       bool needToInferReturnType,
       bool needImplicitDowncasts) {
-    DartType declaredReturnType = returnContext;
     bool isAsync = asyncMarker == AsyncMarker.Async ||
         asyncMarker == AsyncMarker.AsyncStar;
     bool isGenerator = asyncMarker == AsyncMarker.SyncStar ||
@@ -228,33 +204,28 @@
           inferrer.typeSchemaEnvironment.unfutureType(returnContext));
     }
     return new ClosureContext._(isAsync, isGenerator, returnContext,
-        declaredReturnType, needToInferReturnType, needImplicitDowncasts);
+        needToInferReturnType, needImplicitDowncasts);
   }
 
-  ClosureContext._(
-      this.isAsync,
-      this.isGenerator,
-      this.returnOrYieldContext,
-      this.declaredReturnType,
-      this._needToInferReturnType,
-      this._needImplicitDowncasts) {
+  ClosureContext._(this.isAsync, this.isGenerator, this.returnOrYieldContext,
+      this._needToInferReturnType, this._needImplicitDowncasts) {
     assert(returnOrYieldContext != null);
   }
 
   /// Updates the inferred return type based on the presence of a return
   /// statement returning the given [type].
   void handleReturn(TypeInferrerImpl inferrer, DartType type,
-      Expression expression, int fileOffset, bool isArrow) {
+      Expression expression, int fileOffset) {
     if (isGenerator) return;
     _updateInferredReturnType(
-        inferrer, type, expression, fileOffset, true, false, isArrow);
+        inferrer, type, expression, fileOffset, true, false);
   }
 
   void handleYield(TypeInferrerImpl inferrer, bool isYieldStar, DartType type,
       Expression expression, int fileOffset) {
     if (!isGenerator) return;
     _updateInferredReturnType(
-        inferrer, type, expression, fileOffset, false, isYieldStar, false);
+        inferrer, type, expression, fileOffset, false, isYieldStar);
   }
 
   DartType inferReturnType(TypeInferrerImpl inferrer) {
@@ -271,14 +242,8 @@
     return _wrapAsyncOrGenerator(inferrer, inferredType);
   }
 
-  void _updateInferredReturnType(
-      TypeInferrerImpl inferrer,
-      DartType type,
-      Expression expression,
-      int fileOffset,
-      bool isReturn,
-      bool isYieldStar,
-      bool isArrow) {
+  void _updateInferredReturnType(TypeInferrerImpl inferrer, DartType type,
+      Expression expression, int fileOffset, bool isReturn, bool isYieldStar) {
     if (_needImplicitDowncasts) {
       var expectedType = isYieldStar
           ? _wrapAsyncOrGenerator(inferrer, returnOrYieldContext)
@@ -287,10 +252,7 @@
         expectedType = greatestClosure(inferrer.coreTypes, expectedType);
         if (inferrer.ensureAssignable(
                 expectedType, type, expression, fileOffset,
-                isReturnFromAsync: isAsync,
-                isReturn: isReturn,
-                declaredReturnType: declaredReturnType,
-                isArrow: isArrow) !=
+                isReturnFromAsync: isAsync) !=
             null) {
           type = expectedType;
         }
@@ -606,23 +568,9 @@
   /// [expectedType], and inserts an implicit downcast if appropriate.
   Expression ensureAssignable(DartType expectedType, DartType actualType,
       Expression expression, int fileOffset,
-      {bool isReturnFromAsync: false,
-      bool isReturn: false,
-      bool isVoidAllowed,
-      bool isArrow: false,
-      DartType declaredReturnType,
+      {bool isReturnFromAsync = false,
       Template<Message Function(DartType, DartType)> template}) {
-    isVoidAllowed ??= isArrow;
     assert(expectedType != null);
-    if (isReturn &&
-        !isArrow &&
-        !isValidReturn(declaredReturnType, actualType, isReturnFromAsync)) {
-      TreeNode parent = expression.parent;
-      Expression errorNode = helper.wrapInCompileTimeError(
-          expression, messageReturnFromVoidFunction);
-      parent?.replaceChild(expression, errorNode);
-      return errorNode;
-    }
     expectedType = greatestClosure(coreTypes, expectedType);
 
     DartType initialExpectedType = expectedType;
@@ -639,28 +587,6 @@
         expectedType = futuredExpectedType;
       }
     }
-    if (isReturn && !isArrow) {
-      if (expectedType is VoidType) {
-        isVoidAllowed = true;
-        if (actualType is! VoidType &&
-            actualType is! DynamicType &&
-            !isNull(actualType)) {
-          // Error: not assignable.  Perform error recovery.
-          TreeNode parent = expression.parent;
-          Expression errorNode = helper.wrapInCompileTimeError(
-              expression, messageReturnFromVoidFunction);
-          parent?.replaceChild(expression, errorNode);
-          return errorNode;
-        }
-      } else {
-        DartType flattened = typeSchemaEnvironment.unfutureType(expectedType);
-        if (flattened is VoidType) {
-          isVoidAllowed = true;
-        } else {
-          isVoidAllowed = expectedType is DynamicType;
-        }
-      }
-    }
 
     // We don't need to insert assignability checks when doing top level type
     // inference since top level type inference only cares about the type that
@@ -697,15 +623,6 @@
       }
     }
 
-    if (actualType is VoidType && !isVoidAllowed) {
-      // Error: not assignable.  Perform error recovery.
-      TreeNode parent = expression.parent;
-      Expression errorNode =
-          helper.wrapInCompileTimeError(expression, messageVoidExpression);
-      parent?.replaceChild(expression, errorNode);
-      return errorNode;
-    }
-
     if (expectedType == null ||
         typeSchemaEnvironment.isSubtypeOf(actualType, expectedType)) {
       // Types are compatible.
@@ -743,67 +660,6 @@
     }
   }
 
-  bool isValidReturn(
-      DartType returnType, DartType expressionType, bool isAsync) {
-    final DartType t = returnType;
-    final DartType s = expressionType;
-    if (!isAsync) {
-      if (t is DynamicType) {
-        // * `return exp;` where `exp` has static type `S` is a valid return if:
-        //   * `T` is `dynamic`
-        return true;
-      }
-
-      if (t is VoidType) {
-        // * `return exp;` where `exp` has static type `S` is a valid return if:
-        //   * `T` is `void`
-        //   * and `S` is `void` or `dynamic` or `Null`
-        return s is VoidType || s is DynamicType || isNull(s);
-      } else {
-        // * `return exp;` where `exp` has static type `S` is a valid return if:
-        //   * `T` is not `void`
-        //   * and `S` is not `void`
-        //   * and `S` is assignable to `T`
-        return s is! VoidType;
-      }
-    }
-    final DartType flattenT = typeSchemaEnvironment.unfutureType(t);
-
-    // * `return exp;` where `exp` has static type `S` is a valid return if:
-    //   * `flatten(T)` is `dynamic` or `Null`
-    if (flattenT is DynamicType || isNull(flattenT)) return true;
-
-    // * `return exp;` where `exp` has static type `S` is a valid return if:
-    //   * `T` is `void`
-    //   * and `S` is `void`, `dynamic` or `Null`
-    if (t is VoidType) {
-      if (s is VoidType || s is DynamicType || isNull(s)) return true;
-    } else {
-      final DartType flattenS = typeSchemaEnvironment.unfutureType(s);
-      // * `return exp;` where `exp` has static type `S` is a valid return if:
-      //   * `T` is not `void`
-      //   * `flatten(T)` is `void`
-      //   * and `flatten(S)` is `void`, `dynamic` or `Null`
-      if (flattenT is VoidType) {
-        if (flattenS is VoidType ||
-            flattenS is DynamicType ||
-            isNull(flattenS)) {
-          return true;
-        }
-      }
-
-      // * `return exp;` where `exp` has static type `S` is a valid return if:
-      //   * `T` is not `void`
-      //   * and `flatten(S)` is not `void`
-      if (flattenS is! VoidType) return true;
-    }
-    return false;
-  }
-
-  bool isNull(DartType type) {
-    return type is InterfaceType && type.classNode == coreTypes.nullClass;
-  }
-
   /// Finds a member of [receiverType] called [name], and if it is found,
   /// reports it through instrumentation using [fileOffset].
   ///
@@ -1231,8 +1087,7 @@
       Factory<Expression, Statement, Initializer, Type> factory,
       kernel.Expression expression,
       DartType typeContext,
-      bool typeNeeded,
-      {bool isVoidAllowed});
+      bool typeNeeded);
 
   @override
   void inferFieldInitializer<Expression, Statement, Initializer, Type>(
diff --git a/pkg/front_end/messages.status b/pkg/front_end/messages.status
index 30473ab..77ca5a3 100644
--- a/pkg/front_end/messages.status
+++ b/pkg/front_end/messages.status
@@ -372,7 +372,6 @@
 UnterminatedString/script8: Fail
 UnterminatedToken/analyzerCode: Fail
 UnterminatedToken/example: Fail
-VoidExpression/analyzerCode: Fail
 WebLiteralCannotBeRepresentedExactly/analyzerCode: Fail
 WebLiteralCannotBeRepresentedExactly/example: Fail
 YieldAsIdentifier/example: Fail
diff --git a/pkg/front_end/messages.yaml b/pkg/front_end/messages.yaml
index c47b557..7c48b34 100644
--- a/pkg/front_end/messages.yaml
+++ b/pkg/front_end/messages.yaml
@@ -2618,19 +2618,3 @@
   severity: ERROR
   script: |
     class Hest<X extends Y Function<Y>(Y)> {}
-
-VoidExpression:
-  template: "This expression has type 'void' and can't be used."
-  severity: ERROR_LEGACY_WARNING
-  statement: |
-    {
-      void x;
-      var y = x;
-    }
-
-ReturnFromVoidFunction:
-  template: "Can't return a value from a void function."
-  severity: ERROR_LEGACY_WARNING
-  analyzerCode: RETURN_OF_INVALID_TYPE
-  dart2jsCode: "*fatal*"
-  declaration: "void foo() { return 1; }"
diff --git a/pkg/front_end/test/incremental_load_from_dill_test.dart b/pkg/front_end/test/incremental_load_from_dill_test.dart
index 2d2e2b7..485d154 100644
--- a/pkg/front_end/test/incremental_load_from_dill_test.dart
+++ b/pkg/front_end/test/incremental_load_from_dill_test.dart
@@ -55,8 +55,8 @@
   ];
 
   @override
-  Future<void> cleanUp(TestDescription description, Result result) async {
-    await cleanupHelper?.outDir?.delete(recursive: true);
+  void cleanUp(TestDescription description, Result result) {
+    cleanupHelper?.outDir?.deleteSync(recursive: true);
   }
 
   TestData cleanupHelper;
diff --git a/pkg/front_end/testcases/expression.status b/pkg/front_end/testcases/expression.status
index e9ab4a8..e69de29 100644
--- a/pkg/front_end/testcases/expression.status
+++ b/pkg/front_end/testcases/expression.status
@@ -1,3 +0,0 @@
-# Copyright (c) 2018, the Dart project authors.  Please see the AUTHORS file
-# 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.
diff --git a/pkg/front_end/testcases/inference/block_bodied_lambdas_void_context.dart.strong.expect b/pkg/front_end/testcases/inference/block_bodied_lambdas_void_context.dart.strong.expect
index ecfd44f..bdd35f6 100644
--- a/pkg/front_end/testcases/inference/block_bodied_lambdas_void_context.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/block_bodied_lambdas_void_context.dart.strong.expect
@@ -5,9 +5,7 @@
 static method f() → dynamic {
   core::List<core::int> o;
   o.{core::Iterable::forEach}((core::int i) → void {
-    return let dynamic _ = null in let final dynamic #t1 = let dynamic _ = null in invalid-expression "pkg/front_end/testcases/inference/block_bodied_lambdas_void_context.dart:12:33: Error: Can't return a value from a void function.
-    return i /*@target=num::+*/ + 1;
-                                ^" in let final dynamic #t2 = i.{core::num::+}(1) in null;
+    return i.{core::num::+}(1);
   });
 }
 static method main() → dynamic {}
diff --git a/pkg/front_end/testcases/inference/block_bodied_lambdas_void_context.dart.strong.transformed.expect b/pkg/front_end/testcases/inference/block_bodied_lambdas_void_context.dart.strong.transformed.expect
index 9b35c93..bdd35f6 100644
--- a/pkg/front_end/testcases/inference/block_bodied_lambdas_void_context.dart.strong.transformed.expect
+++ b/pkg/front_end/testcases/inference/block_bodied_lambdas_void_context.dart.strong.transformed.expect
@@ -5,9 +5,7 @@
 static method f() → dynamic {
   core::List<core::int> o;
   o.{core::Iterable::forEach}((core::int i) → void {
-    return let<BottomType> _ = null in let final dynamic #t1 = let<BottomType> _ = null in invalid-expression "pkg/front_end/testcases/inference/block_bodied_lambdas_void_context.dart:12:33: Error: Can't return a value from a void function.
-    return i /*@target=num::+*/ + 1;
-                                ^" in let final core::int #t2 = i.{core::num::+}(1) in null;
+    return i.{core::num::+}(1);
   });
 }
 static method main() → dynamic {}
diff --git a/pkg/front_end/testcases/inference/infer_use_of_void_local.dart.strong.expect b/pkg/front_end/testcases/inference/infer_use_of_void_local.dart.strong.expect
index 007fd21..f8773b2 100644
--- a/pkg/front_end/testcases/inference/infer_use_of_void_local.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/infer_use_of_void_local.dart.strong.expect
@@ -1,16 +1,8 @@
-// Errors:
-//
-// pkg/front_end/testcases/inference/infer_use_of_void_local.dart:11:26: Error: This expression has type 'void' and can't be used.
-//   var /*@type=void*/ x = f();
-//                          ^
-
 library test;
 import self as self;
 
 static method f() → void {}
 static method g() → void {
-  void x = let dynamic _ = null in let final dynamic #t1 = let dynamic _ = null in invalid-expression "pkg/front_end/testcases/inference/infer_use_of_void_local.dart:11:26: Error: This expression has type 'void' and can't be used.
-  var /*@type=void*/ x = f();
-                         ^" in let final dynamic #t2 = self::f() in null;
+  void x = self::f();
 }
 static method main() → dynamic {}
diff --git a/pkg/front_end/testcases/inference/infer_use_of_void_local.dart.strong.transformed.expect b/pkg/front_end/testcases/inference/infer_use_of_void_local.dart.strong.transformed.expect
index b7f9b2f..f8773b2 100644
--- a/pkg/front_end/testcases/inference/infer_use_of_void_local.dart.strong.transformed.expect
+++ b/pkg/front_end/testcases/inference/infer_use_of_void_local.dart.strong.transformed.expect
@@ -1,16 +1,8 @@
-// Errors:
-//
-// pkg/front_end/testcases/inference/infer_use_of_void_local.dart:11:26: Error: This expression has type 'void' and can't be used.
-//   var /*@type=void*/ x = f();
-//                          ^
-
 library test;
 import self as self;
 
 static method f() → void {}
 static method g() → void {
-  void x = let<BottomType> _ = null in let final dynamic #t1 = let<BottomType> _ = null in invalid-expression "pkg/front_end/testcases/inference/infer_use_of_void_local.dart:11:26: Error: This expression has type 'void' and can't be used.
-  var /*@type=void*/ x = f();
-                         ^" in let final void #t2 = self::f() in null;
+  void x = self::f();
 }
 static method main() → dynamic {}
diff --git a/pkg/front_end/testcases/inference/infer_variable_void.dart.strong.expect b/pkg/front_end/testcases/inference/infer_variable_void.dart.strong.expect
index 2464498..3bfd2e6 100644
--- a/pkg/front_end/testcases/inference/infer_variable_void.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/infer_variable_void.dart.strong.expect
@@ -1,9 +1,3 @@
-// Errors:
-//
-// pkg/front_end/testcases/inference/infer_variable_void.dart:9:55: Error: This expression has type 'void' and can't be used.
-// var /*@topType=void*/ x = /*info:USE_OF_VOID_RESULT*/ f();
-//                                                       ^
-
 library test;
 import self as self;
 
diff --git a/pkg/front_end/testcases/inference/infer_variable_void.dart.strong.transformed.expect b/pkg/front_end/testcases/inference/infer_variable_void.dart.strong.transformed.expect
index 2464498..3bfd2e6 100644
--- a/pkg/front_end/testcases/inference/infer_variable_void.dart.strong.transformed.expect
+++ b/pkg/front_end/testcases/inference/infer_variable_void.dart.strong.transformed.expect
@@ -1,9 +1,3 @@
-// Errors:
-//
-// pkg/front_end/testcases/inference/infer_variable_void.dart:9:55: Error: This expression has type 'void' and can't be used.
-// var /*@topType=void*/ x = /*info:USE_OF_VOID_RESULT*/ f();
-//                                                       ^
-
 library test;
 import self as self;
 
diff --git a/pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart.strong.expect b/pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart.strong.expect
index eb90747..0d3fd7d 100644
--- a/pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart.strong.expect
@@ -1,9 +1,3 @@
-// Errors:
-//
-// pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart:27:73: Error: This expression has type 'void' and can't be used.
-//   var /*@type=void*/ y = /*info:USE_OF_VOID_RESULT*/ /*@typeArgs=void*/ run(
-//                                                                         ^
-
 library test;
 import self as self;
 import "dart:core" as core;
@@ -23,9 +17,7 @@
     core::print("running");
   }
   dynamic x = self::run<dynamic>(printRunning);
-  void y = let dynamic _ = null in let final dynamic #t1 = let dynamic _ = null in invalid-expression "pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart:27:73: Error: This expression has type 'void' and can't be used.
-  var /*@type=void*/ y = /*info:USE_OF_VOID_RESULT*/ /*@typeArgs=void*/ run(
-                                                                        ^" in let final dynamic #t2 = self::run<void>(printRunning) in null;
+  void y = self::run<void>(printRunning);
   x = 123;
   x = "hi";
   y = 123;
diff --git a/pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart.strong.transformed.expect b/pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart.strong.transformed.expect
index 4f71280..0d3fd7d 100644
--- a/pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart.strong.transformed.expect
+++ b/pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart.strong.transformed.expect
@@ -1,9 +1,3 @@
-// Errors:
-//
-// pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart:27:73: Error: This expression has type 'void' and can't be used.
-//   var /*@type=void*/ y = /*info:USE_OF_VOID_RESULT*/ /*@typeArgs=void*/ run(
-//                                                                         ^
-
 library test;
 import self as self;
 import "dart:core" as core;
@@ -23,9 +17,7 @@
     core::print("running");
   }
   dynamic x = self::run<dynamic>(printRunning);
-  void y = let<BottomType> _ = null in let final dynamic #t1 = let<BottomType> _ = null in invalid-expression "pkg/front_end/testcases/inference/void_return_type_subtypes_dynamic.dart:27:73: Error: This expression has type 'void' and can't be used.
-  var /*@type=void*/ y = /*info:USE_OF_VOID_RESULT*/ /*@typeArgs=void*/ run(
-                                                                        ^" in let final void #t2 = self::run<void>(printRunning) in null;
+  void y = self::run<void>(printRunning);
   x = 123;
   x = "hi";
   y = 123;
diff --git a/pkg/front_end/testcases/inference_new/infer_use_of_void.dart.strong.expect b/pkg/front_end/testcases/inference_new/infer_use_of_void.dart.strong.expect
index 6b4745f..9a42ff3 100644
--- a/pkg/front_end/testcases/inference_new/infer_use_of_void.dart.strong.expect
+++ b/pkg/front_end/testcases/inference_new/infer_use_of_void.dart.strong.expect
@@ -1,9 +1,3 @@
-// Errors:
-//
-// pkg/front_end/testcases/inference_new/infer_use_of_void.dart:17:59: Error: This expression has type 'void' and can't be used.
-//     new C(). /*info:USE_OF_VOID_RESULT*/ /*@target=C::f*/ f();
-//                                                           ^
-
 library test;
 import self as self;
 import "dart:core" as core;
diff --git a/pkg/front_end/testcases/inference_new/infer_use_of_void.dart.strong.transformed.expect b/pkg/front_end/testcases/inference_new/infer_use_of_void.dart.strong.transformed.expect
index 6b4745f..9a42ff3 100644
--- a/pkg/front_end/testcases/inference_new/infer_use_of_void.dart.strong.transformed.expect
+++ b/pkg/front_end/testcases/inference_new/infer_use_of_void.dart.strong.transformed.expect
@@ -1,9 +1,3 @@
-// Errors:
-//
-// pkg/front_end/testcases/inference_new/infer_use_of_void.dart:17:59: Error: This expression has type 'void' and can't be used.
-//     new C(). /*info:USE_OF_VOID_RESULT*/ /*@target=C::f*/ f();
-//                                                           ^
-
 library test;
 import self as self;
 import "dart:core" as core;
diff --git a/pkg/front_end/testcases/inference_new/void_return_type_subtypes_dynamic.dart.strong.expect b/pkg/front_end/testcases/inference_new/void_return_type_subtypes_dynamic.dart.strong.expect
index 5d708e6..5417786 100644
--- a/pkg/front_end/testcases/inference_new/void_return_type_subtypes_dynamic.dart.strong.expect
+++ b/pkg/front_end/testcases/inference_new/void_return_type_subtypes_dynamic.dart.strong.expect
@@ -1,9 +1,3 @@
-// Errors:
-//
-// pkg/front_end/testcases/inference_new/void_return_type_subtypes_dynamic.dart:19:74: Error: This expression has type 'void' and can't be used.
-// var /*@topType=void*/ y = /*info:USE_OF_VOID_RESULT*/ /*@typeArgs=void*/ run(
-//                                                                          ^
-
 library test;
 import self as self;
 import "dart:core" as core;
diff --git a/pkg/front_end/testcases/inference_new/void_return_type_subtypes_dynamic.dart.strong.transformed.expect b/pkg/front_end/testcases/inference_new/void_return_type_subtypes_dynamic.dart.strong.transformed.expect
index 5d708e6..5417786 100644
--- a/pkg/front_end/testcases/inference_new/void_return_type_subtypes_dynamic.dart.strong.transformed.expect
+++ b/pkg/front_end/testcases/inference_new/void_return_type_subtypes_dynamic.dart.strong.transformed.expect
@@ -1,9 +1,3 @@
-// Errors:
-//
-// pkg/front_end/testcases/inference_new/void_return_type_subtypes_dynamic.dart:19:74: Error: This expression has type 'void' and can't be used.
-// var /*@topType=void*/ y = /*info:USE_OF_VOID_RESULT*/ /*@typeArgs=void*/ run(
-//                                                                          ^
-
 library test;
 import self as self;
 import "dart:core" as core;
diff --git a/pkg/front_end/testcases/rasta/super.dart.strong.expect b/pkg/front_end/testcases/rasta/super.dart.strong.expect
index f65cbcd..d4f9d08 100644
--- a/pkg/front_end/testcases/rasta/super.dart.strong.expect
+++ b/pkg/front_end/testcases/rasta/super.dart.strong.expect
@@ -222,10 +222,6 @@
 //     use(super.m -= 42);
 //               ^
 //
-// pkg/front_end/testcases/rasta/super.dart:146:15: Error: This expression has type 'void' and can't be used.
-//     use(super.m());
-//               ^
-//
 // pkg/front_end/testcases/rasta/super.dart:147:11: Error: Too many positional arguments: 0 allowed, 1 given.
 //     super.m(87);
 //           ^
@@ -234,10 +230,6 @@
 //     use(super.m(87));
 //               ^
 //
-// pkg/front_end/testcases/rasta/super.dart:148:15: Error: This expression has type 'void' and can't be used.
-//     use(super.m(87));
-//               ^
-//
 // pkg/front_end/testcases/rasta/super.dart:149:11: Error: Too many positional arguments: 0 allowed, 1 given.
 //     super.n(87);
 //           ^
@@ -245,10 +237,6 @@
 // pkg/front_end/testcases/rasta/super.dart:150:15: Error: Too many positional arguments: 0 allowed, 1 given.
 //     use(super.n(87));
 //               ^
-//
-// pkg/front_end/testcases/rasta/super.dart:150:15: Error: This expression has type 'void' and can't be used.
-//     use(super.n(87));
-//               ^
 
 library;
 import self as self;
@@ -438,17 +426,11 @@
     super.{self::A::[]}(87).call();
     self::use(super.{self::A::[]}(87).call());
     super.{self::A::m}();
-    self::use(let dynamic _ = null in let final dynamic #t43 = let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:146:15: Error: This expression has type 'void' and can't be used.
-    use(super.m());
-              ^" in let final dynamic #t44 = super.{self::A::m}() in null);
+    self::use(super.{self::A::m}());
     super.{self::A::m}(87);
-    self::use(let dynamic _ = null in let final dynamic #t45 = let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:148:15: Error: This expression has type 'void' and can't be used.
-    use(super.m(87));
-              ^" in let final dynamic #t46 = super.{self::A::m}(87) in null);
+    self::use(super.{self::A::m}(87));
     super.{self::A::n}(87);
-    self::use(let dynamic _ = null in let final dynamic #t47 = let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:150:15: Error: This expression has type 'void' and can't be used.
-    use(super.n(87));
-              ^" in let final dynamic #t48 = super.{self::A::n}(87) in null);
+    self::use(super.{self::A::n}(87));
     super.{self::A::a} = 42;
     self::use(super.{self::A::a} = 42);
     super.{self::A::b} = 42;
@@ -468,35 +450,35 @@
     super.{self::B::i} = 42;
     self::use(super.{self::B::i} = 42);
     super.{self::A::[]=}(87, 42);
-    self::use(let final core::int #t49 = 87 in let final core::int #t50 = 42 in let final void #t51 = super.{self::A::[]=}(#t49, #t50) in #t50);
+    self::use(let final core::int #t43 = 87 in let final core::int #t44 = 42 in let final void #t45 = super.{self::A::[]=}(#t43, #t44) in #t44);
     super.m = 42;
     self::use(super.m = 42);
     super.{self::A::n} = 42;
     self::use(super.{self::A::n} = 42);
     super.{self::A::a}.{core::Object::==}(null) ?{dynamic} super.{self::A::a} = 42 : null;
-    self::use(let final dynamic #t52 = super.{self::A::a} in #t52.{core::Object::==}(null) ?{dynamic} super.{self::A::a} = 42 : #t52);
+    self::use(let final dynamic #t46 = super.{self::A::a} in #t46.{core::Object::==}(null) ?{dynamic} super.{self::A::a} = 42 : #t46);
     super.{self::B::b}.{core::Object::==}(null) ?{dynamic} super.{self::A::b} = 42 : null;
-    self::use(let final dynamic #t53 = super.{self::B::b} in #t53.{core::Object::==}(null) ?{dynamic} super.{self::A::b} = 42 : #t53);
+    self::use(let final dynamic #t47 = super.{self::B::b} in #t47.{core::Object::==}(null) ?{dynamic} super.{self::A::b} = 42 : #t47);
     super.{self::A::c}.{core::Object::==}(null) ?{dynamic} super.{self::B::c} = 42 : null;
-    self::use(let final dynamic #t54 = super.{self::A::c} in #t54.{core::Object::==}(null) ?{dynamic} super.{self::B::c} = 42 : #t54);
+    self::use(let final dynamic #t48 = super.{self::A::c} in #t48.{core::Object::==}(null) ?{dynamic} super.{self::B::c} = 42 : #t48);
     super.{self::B::d}.{core::Object::==}(null) ?{dynamic} super.{self::A::d} = 42 : null;
-    self::use(let final dynamic #t55 = super.{self::B::d} in #t55.{core::Object::==}(null) ?{dynamic} super.{self::A::d} = 42 : #t55);
+    self::use(let final dynamic #t49 = super.{self::B::d} in #t49.{core::Object::==}(null) ?{dynamic} super.{self::A::d} = 42 : #t49);
     super.{self::A::e}.{core::Object::==}(null) ?{dynamic} super.e = 42 : null;
-    self::use(let final dynamic #t56 = super.{self::A::e} in #t56.{core::Object::==}(null) ?{dynamic} super.e = 42 : #t56);
+    self::use(let final dynamic #t50 = super.{self::A::e} in #t50.{core::Object::==}(null) ?{dynamic} super.e = 42 : #t50);
     super.{self::A::f}.{core::Object::==}(null) ?{dynamic} super.f = 42 : null;
-    self::use(let final dynamic #t57 = super.{self::A::f} in #t57.{core::Object::==}(null) ?{dynamic} super.f = 42 : #t57);
+    self::use(let final dynamic #t51 = super.{self::A::f} in #t51.{core::Object::==}(null) ?{dynamic} super.f = 42 : #t51);
     super.g.{core::Object::==}(null) ?{dynamic} super.{self::A::g} = 42 : null;
-    self::use(let final dynamic #t58 = super.g in #t58.{core::Object::==}(null) ?{dynamic} super.{self::A::g} = 42 : #t58);
+    self::use(let final dynamic #t52 = super.g in #t52.{core::Object::==}(null) ?{dynamic} super.{self::A::g} = 42 : #t52);
     super.{self::A::h}.{core::Object::==}(null) ?{dynamic} super.{self::A::h} = 42 : null;
-    self::use(let final dynamic #t59 = super.{self::A::h} in #t59.{core::Object::==}(null) ?{dynamic} super.{self::A::h} = 42 : #t59);
+    self::use(let final dynamic #t53 = super.{self::A::h} in #t53.{core::Object::==}(null) ?{dynamic} super.{self::A::h} = 42 : #t53);
     super.{self::A::i}.{core::Object::==}(null) ?{dynamic} super.{self::B::i} = 42 : null;
-    self::use(let final dynamic #t60 = super.{self::A::i} in #t60.{core::Object::==}(null) ?{dynamic} super.{self::B::i} = 42 : #t60);
-    let final core::int #t61 = 87 in super.{self::A::[]}(#t61).{core::Object::==}(null) ?{dynamic} let final core::int #t62 = 42 in let final void #t63 = super.{self::A::[]=}(#t61, #t62) in #t62 : null;
-    self::use(let final core::int #t64 = 87 in let final dynamic #t65 = super.{self::A::[]}(#t64) in #t65.{core::Object::==}(null) ?{dynamic} let final core::int #t66 = 42 in let final void #t67 = super.{self::A::[]=}(#t64, #t66) in #t66 : #t65);
+    self::use(let final dynamic #t54 = super.{self::A::i} in #t54.{core::Object::==}(null) ?{dynamic} super.{self::B::i} = 42 : #t54);
+    let final core::int #t55 = 87 in super.{self::A::[]}(#t55).{core::Object::==}(null) ?{dynamic} let final core::int #t56 = 42 in let final void #t57 = super.{self::A::[]=}(#t55, #t56) in #t56 : null;
+    self::use(let final core::int #t58 = 87 in let final dynamic #t59 = super.{self::A::[]}(#t58) in #t59.{core::Object::==}(null) ?{dynamic} let final core::int #t60 = 42 in let final void #t61 = super.{self::A::[]=}(#t58, #t60) in #t60 : #t59);
     super.{self::A::m}.{core::Object::==}(null) ?{core::Object} super.m = 42 : null;
-    self::use(let final () → void #t68 = super.{self::A::m} in #t68.{core::Object::==}(null) ?{core::Object} super.m = 42 : #t68);
+    self::use(let final () → void #t62 = super.{self::A::m} in #t62.{core::Object::==}(null) ?{core::Object} super.m = 42 : #t62);
     super.{self::A::n}.{core::Object::==}(null) ?{core::Object} super.{self::A::n} = 42 : null;
-    self::use(let final () → void #t69 = super.{self::A::n} in #t69.{core::Object::==}(null) ?{core::Object} super.{self::A::n} = 42 : #t69);
+    self::use(let final () → void #t63 = super.{self::A::n} in #t63.{core::Object::==}(null) ?{core::Object} super.{self::A::n} = 42 : #t63);
     super.{self::A::a} = super.{self::A::a}.+(42);
     self::use(super.{self::A::a} = super.{self::A::a}.+(42));
     super.{self::A::b} = super.{self::B::b}.+(42);
@@ -515,21 +497,21 @@
     self::use(super.{self::A::h} = super.{self::A::h}.+(42));
     super.{self::B::i} = super.{self::A::i}.+(42);
     self::use(super.{self::B::i} = super.{self::A::i}.+(42));
-    let final core::int #t70 = 87 in super.{self::A::[]=}(#t70, super.{self::A::[]}(#t70).+(42));
-    self::use(let final core::int #t71 = 87 in let final dynamic #t72 = super.{self::A::[]}(#t71).+(42) in let final void #t73 = super.{self::A::[]=}(#t71, #t72) in #t72);
-    super.m = let final dynamic #t74 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:222:13: Error: The method '+' isn't defined for the class '() \u8594 void'.
+    let final core::int #t64 = 87 in super.{self::A::[]=}(#t64, super.{self::A::[]}(#t64).+(42));
+    self::use(let final core::int #t65 = 87 in let final dynamic #t66 = super.{self::A::[]}(#t65).+(42) in let final void #t67 = super.{self::A::[]=}(#t65, #t66) in #t66);
+    super.m = let final dynamic #t68 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:222:13: Error: The method '+' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '+'.
     super.m += 42;
             ^";
-    self::use(super.m = let final dynamic #t75 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:223:17: Error: The method '+' isn't defined for the class '() \u8594 void'.
+    self::use(super.m = let final dynamic #t69 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:223:17: Error: The method '+' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '+'.
     use(super.m += 42);
                 ^");
-    super.{self::A::n} = let final dynamic #t76 = super.{self::A::n} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:224:13: Error: The method '+' isn't defined for the class '() \u8594 void'.
+    super.{self::A::n} = let final dynamic #t70 = super.{self::A::n} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:224:13: Error: The method '+' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '+'.
     super.n += 42;
             ^";
-    self::use(super.{self::A::n} = let final dynamic #t77 = super.{self::A::n} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:225:17: Error: The method '+' isn't defined for the class '() \u8594 void'.
+    self::use(super.{self::A::n} = let final dynamic #t71 = super.{self::A::n} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:225:17: Error: The method '+' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '+'.
     use(super.n += 42);
                 ^");
@@ -551,21 +533,21 @@
     self::use(super.{self::A::h} = super.{self::A::h}.-(42));
     super.{self::B::i} = super.{self::A::i}.-(42);
     self::use(super.{self::B::i} = super.{self::A::i}.-(42));
-    let final core::int #t78 = 87 in super.{self::A::[]=}(#t78, super.{self::A::[]}(#t78).-(42));
-    self::use(let final core::int #t79 = 87 in let final dynamic #t80 = super.{self::A::[]}(#t79).-(42) in let final void #t81 = super.{self::A::[]=}(#t79, #t80) in #t80);
-    super.m = let final dynamic #t82 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:247:13: Error: The method '-' isn't defined for the class '() \u8594 void'.
+    let final core::int #t72 = 87 in super.{self::A::[]=}(#t72, super.{self::A::[]}(#t72).-(42));
+    self::use(let final core::int #t73 = 87 in let final dynamic #t74 = super.{self::A::[]}(#t73).-(42) in let final void #t75 = super.{self::A::[]=}(#t73, #t74) in #t74);
+    super.m = let final dynamic #t76 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:247:13: Error: The method '-' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '-'.
     super.m -= 42;
             ^";
-    self::use(super.m = let final dynamic #t83 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:248:17: Error: The method '-' isn't defined for the class '() \u8594 void'.
+    self::use(super.m = let final dynamic #t77 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:248:17: Error: The method '-' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '-'.
     use(super.m -= 42);
                 ^");
-    super.{self::A::n} = let final dynamic #t84 = super.{self::A::n} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:249:13: Error: The method '-' isn't defined for the class '() \u8594 void'.
+    super.{self::A::n} = let final dynamic #t78 = super.{self::A::n} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:249:13: Error: The method '-' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '-'.
     super.n -= 42;
             ^";
-    self::use(super.{self::A::n} = let final dynamic #t85 = super.{self::A::n} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:250:17: Error: The method '-' isn't defined for the class '() \u8594 void'.
+    self::use(super.{self::A::n} = let final dynamic #t79 = super.{self::A::n} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/rasta/super.dart:250:17: Error: The method '-' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '-'.
     use(super.n -= 42);
                 ^");
diff --git a/pkg/front_end/testcases/strong.status b/pkg/front_end/testcases/strong.status
index 5ef2a39..b5d4f7b 100644
--- a/pkg/front_end/testcases/strong.status
+++ b/pkg/front_end/testcases/strong.status
@@ -220,5 +220,3 @@
 co19_language_metadata_syntax_t04: RuntimeError # Fasta doesn't recover well
 
 external_import: RuntimeError # The native extension to import doesn't exist. This is ok.
-
-inference/void_return_type_subtypes_dynamic: RuntimeError
diff --git a/pkg/front_end/testcases/super_rasta_copy.dart.strong.expect b/pkg/front_end/testcases/super_rasta_copy.dart.strong.expect
index 7ce7859..b5aeddb 100644
--- a/pkg/front_end/testcases/super_rasta_copy.dart.strong.expect
+++ b/pkg/front_end/testcases/super_rasta_copy.dart.strong.expect
@@ -200,10 +200,6 @@
 //     use(super.m -= 42);
 //               ^
 //
-// pkg/front_end/testcases/super_rasta_copy.dart:138:15: Error: This expression has type 'void' and can't be used.
-//     use(super.m());
-//               ^
-//
 // pkg/front_end/testcases/super_rasta_copy.dart:139:11: Error: Too many positional arguments: 0 allowed, 1 given.
 //     super.m(87);
 //           ^
@@ -211,10 +207,6 @@
 // pkg/front_end/testcases/super_rasta_copy.dart:140:15: Error: Too many positional arguments: 0 allowed, 1 given.
 //     use(super.m(87));
 //               ^
-//
-// pkg/front_end/testcases/super_rasta_copy.dart:140:15: Error: This expression has type 'void' and can't be used.
-//     use(super.m(87));
-//               ^
 
 library;
 import self as self;
@@ -370,13 +362,9 @@
     super.{self::A::[]}(87).call();
     self::use(super.{self::A::[]}(87).call());
     super.{self::A::m}();
-    self::use(let dynamic _ = null in let final dynamic #t35 = let dynamic _ = null in invalid-expression "pkg/front_end/testcases/super_rasta_copy.dart:138:15: Error: This expression has type 'void' and can't be used.
-    use(super.m());
-              ^" in let final dynamic #t36 = super.{self::A::m}() in null);
+    self::use(super.{self::A::m}());
     super.{self::A::m}(87);
-    self::use(let dynamic _ = null in let final dynamic #t37 = let dynamic _ = null in invalid-expression "pkg/front_end/testcases/super_rasta_copy.dart:140:15: Error: This expression has type 'void' and can't be used.
-    use(super.m(87));
-              ^" in let final dynamic #t38 = super.{self::A::m}(87) in null);
+    self::use(super.{self::A::m}(87));
     super.{self::A::a} = 42;
     self::use(super.{self::A::a} = 42);
     super.{self::A::b} = 42;
@@ -396,31 +384,31 @@
     super.{self::B::i} = 42;
     self::use(super.{self::B::i} = 42);
     super.{self::A::[]=}(87, 42);
-    self::use(let final core::int #t39 = 87 in let final core::int #t40 = 42 in let final void #t41 = super.{self::A::[]=}(#t39, #t40) in #t40);
+    self::use(let final core::int #t35 = 87 in let final core::int #t36 = 42 in let final void #t37 = super.{self::A::[]=}(#t35, #t36) in #t36);
     super.m = 42;
     self::use(super.m = 42);
     super.{self::A::a}.{core::Object::==}(null) ?{dynamic} super.{self::A::a} = 42 : null;
-    self::use(let final dynamic #t42 = super.{self::A::a} in #t42.{core::Object::==}(null) ?{dynamic} super.{self::A::a} = 42 : #t42);
+    self::use(let final dynamic #t38 = super.{self::A::a} in #t38.{core::Object::==}(null) ?{dynamic} super.{self::A::a} = 42 : #t38);
     super.{self::B::b}.{core::Object::==}(null) ?{dynamic} super.{self::A::b} = 42 : null;
-    self::use(let final dynamic #t43 = super.{self::B::b} in #t43.{core::Object::==}(null) ?{dynamic} super.{self::A::b} = 42 : #t43);
+    self::use(let final dynamic #t39 = super.{self::B::b} in #t39.{core::Object::==}(null) ?{dynamic} super.{self::A::b} = 42 : #t39);
     super.{self::A::c}.{core::Object::==}(null) ?{dynamic} super.{self::B::c} = 42 : null;
-    self::use(let final dynamic #t44 = super.{self::A::c} in #t44.{core::Object::==}(null) ?{dynamic} super.{self::B::c} = 42 : #t44);
+    self::use(let final dynamic #t40 = super.{self::A::c} in #t40.{core::Object::==}(null) ?{dynamic} super.{self::B::c} = 42 : #t40);
     super.{self::B::d}.{core::Object::==}(null) ?{dynamic} super.{self::A::d} = 42 : null;
-    self::use(let final dynamic #t45 = super.{self::B::d} in #t45.{core::Object::==}(null) ?{dynamic} super.{self::A::d} = 42 : #t45);
+    self::use(let final dynamic #t41 = super.{self::B::d} in #t41.{core::Object::==}(null) ?{dynamic} super.{self::A::d} = 42 : #t41);
     super.{self::A::e}.{core::Object::==}(null) ?{dynamic} super.e = 42 : null;
-    self::use(let final dynamic #t46 = super.{self::A::e} in #t46.{core::Object::==}(null) ?{dynamic} super.e = 42 : #t46);
+    self::use(let final dynamic #t42 = super.{self::A::e} in #t42.{core::Object::==}(null) ?{dynamic} super.e = 42 : #t42);
     super.{self::A::f}.{core::Object::==}(null) ?{dynamic} super.f = 42 : null;
-    self::use(let final dynamic #t47 = super.{self::A::f} in #t47.{core::Object::==}(null) ?{dynamic} super.f = 42 : #t47);
+    self::use(let final dynamic #t43 = super.{self::A::f} in #t43.{core::Object::==}(null) ?{dynamic} super.f = 42 : #t43);
     super.g.{core::Object::==}(null) ?{dynamic} super.{self::A::g} = 42 : null;
-    self::use(let final dynamic #t48 = super.g in #t48.{core::Object::==}(null) ?{dynamic} super.{self::A::g} = 42 : #t48);
+    self::use(let final dynamic #t44 = super.g in #t44.{core::Object::==}(null) ?{dynamic} super.{self::A::g} = 42 : #t44);
     super.{self::A::h}.{core::Object::==}(null) ?{dynamic} super.{self::A::h} = 42 : null;
-    self::use(let final dynamic #t49 = super.{self::A::h} in #t49.{core::Object::==}(null) ?{dynamic} super.{self::A::h} = 42 : #t49);
+    self::use(let final dynamic #t45 = super.{self::A::h} in #t45.{core::Object::==}(null) ?{dynamic} super.{self::A::h} = 42 : #t45);
     super.{self::A::i}.{core::Object::==}(null) ?{dynamic} super.{self::B::i} = 42 : null;
-    self::use(let final dynamic #t50 = super.{self::A::i} in #t50.{core::Object::==}(null) ?{dynamic} super.{self::B::i} = 42 : #t50);
-    let final core::int #t51 = 87 in super.{self::A::[]}(#t51).{core::Object::==}(null) ?{dynamic} let final core::int #t52 = 42 in let final void #t53 = super.{self::A::[]=}(#t51, #t52) in #t52 : null;
-    self::use(let final core::int #t54 = 87 in let final dynamic #t55 = super.{self::A::[]}(#t54) in #t55.{core::Object::==}(null) ?{dynamic} let final core::int #t56 = 42 in let final void #t57 = super.{self::A::[]=}(#t54, #t56) in #t56 : #t55);
+    self::use(let final dynamic #t46 = super.{self::A::i} in #t46.{core::Object::==}(null) ?{dynamic} super.{self::B::i} = 42 : #t46);
+    let final core::int #t47 = 87 in super.{self::A::[]}(#t47).{core::Object::==}(null) ?{dynamic} let final core::int #t48 = 42 in let final void #t49 = super.{self::A::[]=}(#t47, #t48) in #t48 : null;
+    self::use(let final core::int #t50 = 87 in let final dynamic #t51 = super.{self::A::[]}(#t50) in #t51.{core::Object::==}(null) ?{dynamic} let final core::int #t52 = 42 in let final void #t53 = super.{self::A::[]=}(#t50, #t52) in #t52 : #t51);
     super.{self::A::m}.{core::Object::==}(null) ?{core::Object} super.m = 42 : null;
-    self::use(let final () → void #t58 = super.{self::A::m} in #t58.{core::Object::==}(null) ?{core::Object} super.m = 42 : #t58);
+    self::use(let final () → void #t54 = super.{self::A::m} in #t54.{core::Object::==}(null) ?{core::Object} super.m = 42 : #t54);
     super.{self::A::a} = super.{self::A::a}.+(42);
     self::use(super.{self::A::a} = super.{self::A::a}.+(42));
     super.{self::A::b} = super.{self::B::b}.+(42);
@@ -439,13 +427,13 @@
     self::use(super.{self::A::h} = super.{self::A::h}.+(42));
     super.{self::B::i} = super.{self::A::i}.+(42);
     self::use(super.{self::B::i} = super.{self::A::i}.+(42));
-    let final core::int #t59 = 87 in super.{self::A::[]=}(#t59, super.{self::A::[]}(#t59).+(42));
-    self::use(let final core::int #t60 = 87 in let final dynamic #t61 = super.{self::A::[]}(#t60).+(42) in let final void #t62 = super.{self::A::[]=}(#t60, #t61) in #t61);
-    super.m = let final dynamic #t63 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/super_rasta_copy.dart:208:13: Error: The method '+' isn't defined for the class '() \u8594 void'.
+    let final core::int #t55 = 87 in super.{self::A::[]=}(#t55, super.{self::A::[]}(#t55).+(42));
+    self::use(let final core::int #t56 = 87 in let final dynamic #t57 = super.{self::A::[]}(#t56).+(42) in let final void #t58 = super.{self::A::[]=}(#t56, #t57) in #t57);
+    super.m = let final dynamic #t59 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/super_rasta_copy.dart:208:13: Error: The method '+' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '+'.
     super.m += 42;
             ^";
-    self::use(super.m = let final dynamic #t64 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/super_rasta_copy.dart:209:17: Error: The method '+' isn't defined for the class '() \u8594 void'.
+    self::use(super.m = let final dynamic #t60 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/super_rasta_copy.dart:209:17: Error: The method '+' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '+'.
     use(super.m += 42);
                 ^");
@@ -467,13 +455,13 @@
     self::use(super.{self::A::h} = super.{self::A::h}.-(42));
     super.{self::B::i} = super.{self::A::i}.-(42);
     self::use(super.{self::B::i} = super.{self::A::i}.-(42));
-    let final core::int #t65 = 87 in super.{self::A::[]=}(#t65, super.{self::A::[]}(#t65).-(42));
-    self::use(let final core::int #t66 = 87 in let final dynamic #t67 = super.{self::A::[]}(#t66).-(42) in let final void #t68 = super.{self::A::[]=}(#t66, #t67) in #t67);
-    super.m = let final dynamic #t69 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/super_rasta_copy.dart:231:13: Error: The method '-' isn't defined for the class '() \u8594 void'.
+    let final core::int #t61 = 87 in super.{self::A::[]=}(#t61, super.{self::A::[]}(#t61).-(42));
+    self::use(let final core::int #t62 = 87 in let final dynamic #t63 = super.{self::A::[]}(#t62).-(42) in let final void #t64 = super.{self::A::[]=}(#t62, #t63) in #t63);
+    super.m = let final dynamic #t65 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/super_rasta_copy.dart:231:13: Error: The method '-' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '-'.
     super.m -= 42;
             ^";
-    self::use(super.m = let final dynamic #t70 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/super_rasta_copy.dart:232:17: Error: The method '-' isn't defined for the class '() \u8594 void'.
+    self::use(super.m = let final dynamic #t66 = super.{self::A::m} in let dynamic _ = null in invalid-expression "pkg/front_end/testcases/super_rasta_copy.dart:232:17: Error: The method '-' isn't defined for the class '() \u8594 void'.
 Try correcting the name to the name of an existing method, or defining a method named '-'.
     use(super.m -= 42);
                 ^");
diff --git a/pkg/pkg.status b/pkg/pkg.status
index 54eb793..e2a1a1a 100644
--- a/pkg/pkg.status
+++ b/pkg/pkg.status
@@ -95,7 +95,6 @@
 [ $runtime == vm ]
 analysis_server/test/benchmarks_test: Pass, Slow
 analysis_server/test/completion_test: Pass, Slow
-analysis_server/test/context_manager_test: Fail
 analysis_server/test/domain_completion_test: Pass, Slow
 analysis_server/test/edit/refactoring_test: Pass, Slow
 analysis_server/test/integration/*: Pass, Slow
@@ -114,10 +113,7 @@
 analyzer/test/file_system/physical_resource_provider_test: Pass, Fail # Issue 25472
 analyzer/test/generated/hint_code_driver_test: Pass, Slow
 analyzer/test/generated/non_error_resolver_kernel_test: Pass, Slow
-analyzer/test/generated/static_type_warning_code_kernel_test: Fail
-analyzer/test/generated/static_warning_code_kernel_test: Fail
 analyzer/test/generated/strong_mode_driver_test: Pass, Slow
-analyzer/test/generated/strong_mode_kernel_test: Fail
 analyzer/test/src/dart/analysis/driver_resolution_kernel_test: Pass, Slow
 analyzer/test/src/dart/analysis/driver_resolution_test: Pass, Slow
 analyzer/test/src/dart/analysis/driver_test: Pass, Slow
diff --git a/pkg/testing/lib/src/chain.dart b/pkg/testing/lib/src/chain.dart
index 53256ae..2a82f99 100644
--- a/pkg/testing/lib/src/chain.dart
+++ b/pkg/testing/lib/src/chain.dart
@@ -293,7 +293,7 @@
     return result.copyWithOutcome(outcome);
   }
 
-  Future<void> cleanUp(TestDescription description, Result result) => null;
+  void cleanUp(TestDescription description, Result result) {}
 }
 
 abstract class Step<I, O, C extends ChainContext> {
diff --git a/runtime/lib/convert_patch.dart b/runtime/lib/convert_patch.dart
index 34fa1e6..a2c802d 100644
--- a/runtime/lib/convert_patch.dart
+++ b/runtime/lib/convert_patch.dart
@@ -621,6 +621,22 @@
   }
 
   /**
+   * Create a _NumberBuffer containing the digits from [start] to [chunkEnd].
+   *
+   * This creates a number buffer and initializes it with the part of the
+   * number literal ending the current chunk
+   */
+  void createNumberBuffer(int start) {
+    assert(start >= 0);
+    assert(start < chunkEnd);
+    int length = chunkEnd - start;
+    var buffer = new _NumberBuffer(length);
+    copyCharsToList(start, chunkEnd, buffer.list, 0);
+    buffer.length = length;
+    return buffer;
+  }
+
+  /**
    * Continues parsing a partial value.
    */
   int parsePartial(int position) {
diff --git a/runtime/observatory/tests/service/test_helper.dart b/runtime/observatory/tests/service/test_helper.dart
index 3913854..c8a4111 100644
--- a/runtime/observatory/tests/service/test_helper.dart
+++ b/runtime/observatory/tests/service/test_helper.dart
@@ -334,7 +334,7 @@
 
         print('All service tests completed successfully.');
         testsDone = true;
-        process.requestExit();
+        await process.requestExit();
       });
     }, onError: (error, stackTrace) {
       if (testsDone) {
diff --git a/runtime/tests/vm/dart/byte_array_optimized_test.dart b/runtime/tests/vm/dart/byte_array_optimized_test.dart
index 827b93c..763fa52 100644
--- a/runtime/tests/vm/dart/byte_array_optimized_test.dart
+++ b/runtime/tests/vm/dart/byte_array_optimized_test.dart
@@ -24,7 +24,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -130,7 +130,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -227,7 +227,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -353,7 +353,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -460,7 +460,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -586,7 +586,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -698,7 +698,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -822,7 +822,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -928,7 +928,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -1030,7 +1030,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -1172,7 +1172,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -1346,7 +1346,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -1480,7 +1480,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -1808,7 +1808,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -2054,7 +2054,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -2521,7 +2521,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -2862,7 +2862,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -3522,7 +3522,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -3956,7 +3956,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -4121,7 +4121,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
diff --git a/runtime/tests/vm/dart/byte_array_test.dart b/runtime/tests/vm/dart/byte_array_test.dart
index d3dc4b2..903bf2b 100644
--- a/runtime/tests/vm/dart/byte_array_test.dart
+++ b/runtime/tests/vm/dart/byte_array_test.dart
@@ -22,7 +22,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -131,7 +131,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -231,7 +231,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -332,7 +332,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -461,7 +461,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -571,7 +571,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -700,7 +700,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -815,7 +815,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -942,7 +942,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -1051,7 +1051,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -1156,7 +1156,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      array[-1];
+      return array[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -1566,7 +1566,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -1740,7 +1740,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -1874,7 +1874,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -2202,7 +2202,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -2448,7 +2448,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -2915,7 +2915,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -3256,7 +3256,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -3916,7 +3916,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -4350,7 +4350,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
@@ -4515,7 +4515,7 @@
       return e is RangeError;
     });
     Expect.throws(() {
-      view[-1];
+      return view[-1];
     }, (e) {
       return e is RangeError;
     });
diff --git a/runtime/vm/compiler/backend/type_propagator.cc b/runtime/vm/compiler/backend/type_propagator.cc
index e4f7d2e..81b5e09 100644
--- a/runtime/vm/compiler/backend/type_propagator.cc
+++ b/runtime/vm/compiler/backend/type_propagator.cc
@@ -130,7 +130,7 @@
   // can contain [AssertAssignableInstr]s and we therefore enable this
   // optimization.
   Isolate* isolate = Isolate::Current();
-  if (isolate->type_checks() || isolate->strong()) {
+  if (isolate->argument_type_checks()) {
     StrengthenAsserts(block);
   }
 
diff --git a/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc b/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc
index 588c85a..e690459 100644
--- a/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc
+++ b/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc
@@ -956,6 +956,10 @@
 
 Fragment StreamingFlowGraphBuilder::BuildArgumentTypeChecks(
     TypeChecksToBuild mode) {
+  if (FLAG_omit_strong_type_checks) {
+    return Fragment();
+  }
+
   FunctionNodeHelper function_node_helper(this);
   function_node_helper.SetNext(FunctionNodeHelper::kTypeParameters);
   const Function& dart_function = parsed_function()->function();
@@ -2717,7 +2721,8 @@
     const intptr_t kNumArgsChecked = 1;
 
     const String* mangled_name = &setter_name;
-    if (!FLAG_precompiled_mode && I->strong() && H.IsRoot(itarget_name)) {
+    if (!FLAG_precompiled_mode && I->strong() &&
+        !FLAG_omit_strong_type_checks && H.IsRoot(itarget_name)) {
       mangled_name = &String::ZoneHandle(
           Z, Function::CreateDynamicInvocationForwarderName(setter_name));
     }
@@ -3291,6 +3296,7 @@
     //     those cases require a dynamic invocation forwarder;
     //   * we assume that all closures are entered in a checked way.
     if (!FLAG_precompiled_mode && I->strong() &&
+        !FLAG_omit_strong_type_checks &&
         (name.raw() != Symbols::EqualOperator().raw()) &&
         (name.raw() != Symbols::Call().raw()) && H.IsRoot(itarget_name)) {
       mangled_name = &String::ZoneHandle(
diff --git a/runtime/vm/compiler/frontend/kernel_to_il.cc b/runtime/vm/compiler/frontend/kernel_to_il.cc
index 73d7c38..fa2d862 100644
--- a/runtime/vm/compiler/frontend/kernel_to_il.cc
+++ b/runtime/vm/compiler/frontend/kernel_to_il.cc
@@ -1593,6 +1593,9 @@
   if (dst_type.IsMalformed()) {
     return ThrowTypeError();
   }
+  if (FLAG_omit_strong_type_checks) {
+    return Fragment();
+  }
   if (!dst_type.IsDynamicType() && !dst_type.IsObjectType() &&
       !dst_type.IsVoidType()) {
     LocalVariable* top_of_stack = MakeTemporary();
@@ -1605,6 +1608,9 @@
 }
 
 Fragment FlowGraphBuilder::AssertBool(TokenPosition position) {
+  if (FLAG_omit_strong_type_checks) {
+    return Fragment();
+  }
   Value* value = Pop();
   AssertBooleanInstr* instr =
       new (Z) AssertBooleanInstr(position, value, GetNextDeoptId());
@@ -1616,6 +1622,10 @@
                                             const AbstractType& dst_type,
                                             const String& dst_name,
                                             AssertAssignableInstr::Kind kind) {
+  if (FLAG_omit_strong_type_checks) {
+    return Fragment();
+  }
+
   Fragment instructions;
   Value* value = Pop();
 
diff --git a/runtime/vm/compiler/jit/compiler.cc b/runtime/vm/compiler/jit/compiler.cc
index 9083339..be3018b 100644
--- a/runtime/vm/compiler/jit/compiler.cc
+++ b/runtime/vm/compiler/jit/compiler.cc
@@ -132,6 +132,18 @@
                     precompilation,
                     "Precompilation mode");
 
+static void UnsafeModeHandler(bool value) {
+  if (value) {
+    FLAG_omit_strong_type_checks = true;
+    FLAG_use_strong_mode_types = false;
+  }
+}
+
+DEFINE_FLAG_HANDLER(UnsafeModeHandler,
+                    experimental_unsafe_mode_use_at_your_own_risk,
+                    "Omit runtime strong mode type checks and disable "
+                    "optimizations based on types.");
+
 #ifndef DART_PRECOMPILED_RUNTIME
 
 bool UseKernelFrontEndFor(ParsedFunction* parsed_function) {
diff --git a/runtime/vm/flag_list.h b/runtime/vm/flag_list.h
index 670fd1a..40a8d28 100644
--- a/runtime/vm/flag_list.h
+++ b/runtime/vm/flag_list.h
@@ -122,6 +122,7 @@
     "Max size of new gen semi space in MB")                                    \
   P(new_gen_semi_initial_size, int, (kWordSize <= 4) ? 1 : 2,                  \
     "Initial size of new gen semi space in MB")                                \
+  P(omit_strong_type_checks, bool, false, "Omit strong mode type checks.")     \
   P(optimization_counter_threshold, int, 30000,                                \
     "Function's usage-counter value before it is optimized, -1 means never")   \
   P(old_gen_heap_size, int, kDefaultMaxOldGenHeapSize,                         \
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 974c447..318ed36 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -749,7 +749,9 @@
 
   // Convenience flag tester indicating whether incoming function arguments
   // should be type checked.
-  bool argument_type_checks() { return strong() || type_checks(); }
+  bool argument_type_checks() {
+    return (strong() && !FLAG_omit_strong_type_checks) || type_checks();
+  }
 
   static void KillAllIsolates(LibMsgId msg_id);
   static void KillIfExists(Isolate* isolate, LibMsgId msg_id);
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 3a1b5cb..eede837 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -2428,6 +2428,9 @@
 
   bool NeedsArgumentTypeChecks(Isolate* I) const {
     if (I->strong()) {
+      if (FLAG_omit_strong_type_checks) {
+        return false;
+      }
       return IsNonImplicitClosureFunction() ||
              !(is_static() || (kind() == RawFunction::kConstructor));
     }
diff --git a/runtime/vm/object_test.cc b/runtime/vm/object_test.cc
index ea834ac..baf1b79 100644
--- a/runtime/vm/object_test.cc
+++ b/runtime/vm/object_test.cc
@@ -3857,38 +3857,38 @@
 TEST_CASE(FunctionSourceFingerprint) {
   const char* kScriptChars =
       "class A {\n"
-      "  static test1(int a) {\n"
+      "  static void test1(int a) {\n"
       "    return a > 1 ? a + 1 : a;\n"
       "  }\n"
-      "  static test2(a) {\n"
+      "  static void test2(a) {\n"
       "    return a > 1 ? a + 1 : a;\n"
       "  }\n"
-      "  static test3(b) {\n"
+      "  static void test3(b) {\n"
       "    return b > 1 ? b + 1 : b;\n"
       "  }\n"
-      "  static test4(b) {\n"
+      "  static void test4(b) {\n"
       "    return b > 1 ? b - 1 : b;\n"
       "  }\n"
-      "  static test5(b) {\n"
+      "  static void test5(b) {\n"
       "    return b > 1 ? b - 2 : b;\n"
       "  }\n"
-      "  test6(int a) {\n"
+      "  void test6(int a) {\n"
       "    return a > 1 ? a + 1 : a;\n"
       "  }\n"
       "}\n"
       "class B {\n"
-      "  static /* Different declaration style. */\n"
+      "  static void /* Different declaration style. */\n"
       "  test1(int a) {\n"
       "    /* Returns a + 1 for a > 1, a otherwise. */\n"
       "    return a > 1 ?\n"
       "        a + 1 :\n"
       "        a;\n"
       "  }\n"
-      "  static test5(b) {\n"
+      "  static void test5(b) {\n"
       "    return b > 1 ?\n"
       "        b - 2 : b;\n"
       "  }\n"
-      "  test6(int a) {\n"
+      "  void test6(int a) {\n"
       "    return a > 1 ? a + 1 : a;\n"
       "  }\n"
       "}";
diff --git a/runtime/vm/scopes.h b/runtime/vm/scopes.h
index 15548dc..1383695 100644
--- a/runtime/vm/scopes.h
+++ b/runtime/vm/scopes.h
@@ -129,7 +129,9 @@
 
   // Returns true if this local variable represents a parameter that needs type
   // check when we enter the function.
-  bool needs_type_check() const { return type_check_mode_ == kDoTypeCheck; }
+  bool needs_type_check() const {
+    return (type_check_mode_ == kDoTypeCheck) && !FLAG_omit_strong_type_checks;
+  }
 
   // Returns true if this local variable represents a parameter which type is
   // guaranteed by the caller.
diff --git a/samples/sample_extension/test/sample_extension_test_helper.dart b/samples/sample_extension/test/sample_extension_test_helper.dart
index 157942c..72819b9 100644
--- a/samples/sample_extension/test/sample_extension_test_helper.dart
+++ b/samples/sample_extension/test/sample_extension_test_helper.dart
@@ -85,6 +85,6 @@
       await run(Platform.executable, args);
     }
   } finally {
-    tempDirectory.deleteSync(recursive: true);
+    await tempDirectory.deleteSync(recursive: true);
   }
 }
diff --git a/sdk/lib/async/zone.dart b/sdk/lib/async/zone.dart
index dad3151..6f11023 100644
--- a/sdk/lib/async/zone.dart
+++ b/sdk/lib/async/zone.dart
@@ -284,8 +284,6 @@
    * desired behavior.
    */
   static const Zone root = _rootZone;
-  @Deprecated("Use root instead")
-  static const Zone ROOT = root;
 
   /** The currently running zone. */
   static Zone _current = _rootZone;
diff --git a/sdk/lib/convert/ascii.dart b/sdk/lib/convert/ascii.dart
index 40cf405..0e07316 100644
--- a/sdk/lib/convert/ascii.dart
+++ b/sdk/lib/convert/ascii.dart
@@ -18,8 +18,6 @@
  * ```
  */
 const AsciiCodec ascii = const AsciiCodec();
-@Deprecated("Use ascii instead")
-const AsciiCodec ASCII = ascii;
 
 const int _asciiMask = 0x7F;
 
diff --git a/sdk/lib/convert/base64.dart b/sdk/lib/convert/base64.dart
index a2a29f4..a523669 100644
--- a/sdk/lib/convert/base64.dart
+++ b/sdk/lib/convert/base64.dart
@@ -18,8 +18,6 @@
  *     var decoded = base64.decode("YmzDpWLDpnJncsO4ZAo=");
  */
 const Base64Codec base64 = const Base64Codec();
-@Deprecated("Use base64 instead")
-const Base64Codec BASE64 = base64;
 
 /**
  * A [base64url](https://tools.ietf.org/html/rfc4648) encoder and decoder.
@@ -35,8 +33,6 @@
  *     var decoded = base64Url.decode("YmzDpWLDpnJncsO4ZAo=");
  */
 const Base64Codec base64Url = const Base64Codec.urlSafe();
-@Deprecated("Use base64Url instead")
-const Base64Codec BASE64URL = base64Url;
 
 /**
  * Encodes [bytes] using [base64](https://tools.ietf.org/html/rfc4648) encoding.
diff --git a/sdk/lib/convert/html_escape.dart b/sdk/lib/convert/html_escape.dart
index 9d6804c..3d5de0a 100644
--- a/sdk/lib/convert/html_escape.dart
+++ b/sdk/lib/convert/html_escape.dart
@@ -25,8 +25,6 @@
  * tag, but not inside a quoted attribute value, is still dangerous.
  */
 const HtmlEscape htmlEscape = const HtmlEscape();
-@Deprecated("Use htmlEscape instead")
-const HtmlEscape HTML_ESCAPE = htmlEscape;
 
 /**
  * HTML escape modes.
@@ -72,8 +70,6 @@
    */
   static const HtmlEscapeMode unknown =
       const HtmlEscapeMode._('unknown', true, true, true, true);
-  @Deprecated("Use unknown instead")
-  static const HtmlEscapeMode UNKNOWN = unknown;
 
   /**
    * Escaping mode for text going into double-quoted HTML attribute values.
@@ -87,8 +83,6 @@
    */
   static const HtmlEscapeMode attribute =
       const HtmlEscapeMode._('attribute', true, true, false, false);
-  @Deprecated("Use attribute instead")
-  static const HtmlEscapeMode ATTRIBUTE = attribute;
 
   /**
    * Escaping mode for text going into single-quoted HTML attribute values.
@@ -102,8 +96,6 @@
    */
   static const HtmlEscapeMode sqAttribute =
       const HtmlEscapeMode._('attribute', true, false, true, false);
-  @Deprecated("Use sqAttribute instead")
-  static const HtmlEscapeMode SQ_ATTRIBUTE = sqAttribute;
 
   /**
    * Escaping mode for text going into HTML element content.
@@ -116,8 +108,6 @@
    */
   static const HtmlEscapeMode element =
       const HtmlEscapeMode._('element', true, false, false, false);
-  @Deprecated("Use element instead")
-  static const HtmlEscapeMode ELEMENT = element;
 
   const HtmlEscapeMode._(this._name, this.escapeLtGt, this.escapeQuot,
       this.escapeApos, this.escapeSlash);
diff --git a/sdk/lib/convert/json.dart b/sdk/lib/convert/json.dart
index a5e8d86..1d3c69a 100644
--- a/sdk/lib/convert/json.dart
+++ b/sdk/lib/convert/json.dart
@@ -66,8 +66,6 @@
  *     var decoded = json.decode('["foo", { "bar": 499 }]');
  */
 const JsonCodec json = const JsonCodec();
-@Deprecated("Use json instead")
-const JsonCodec JSON = json;
 
 /**
  * Converts [value] to a JSON string.
diff --git a/sdk/lib/convert/latin1.dart b/sdk/lib/convert/latin1.dart
index 1de1bb3..e9c316d 100644
--- a/sdk/lib/convert/latin1.dart
+++ b/sdk/lib/convert/latin1.dart
@@ -18,8 +18,6 @@
  * ```
  */
 const Latin1Codec latin1 = const Latin1Codec();
-@Deprecated("Use latin1 instead")
-const Latin1Codec LATIN1 = latin1;
 
 const int _latin1Mask = 0xFF;
 
diff --git a/sdk/lib/convert/utf.dart b/sdk/lib/convert/utf.dart
index c490d36..13aecd8 100644
--- a/sdk/lib/convert/utf.dart
+++ b/sdk/lib/convert/utf.dart
@@ -6,13 +6,9 @@
 
 /** The Unicode Replacement character `U+FFFD` (�). */
 const int unicodeReplacementCharacterRune = 0xFFFD;
-@Deprecated("Use unicodeReplacementCharacterRune instead")
-const int UNICODE_REPLACEMENT_CHARACTER_RUNE = unicodeReplacementCharacterRune;
 
 /** The Unicode Byte Order Marker (BOM) character `U+FEFF`. */
 const int unicodeBomCharacterRune = 0xFEFF;
-@Deprecated("Use unicodeBomCharacterRune instead")
-const int UNICODE_BOM_CHARACTER_RUNE = unicodeBomCharacterRune;
 
 /**
  * An instance of the default implementation of the [Utf8Codec].
@@ -27,8 +23,6 @@
  *                                0x72, 0x67, 0x72, 0xc3, 0xb8, 0x64]);
  */
 const Utf8Codec utf8 = const Utf8Codec();
-@Deprecated("Use utf8 instead")
-const Utf8Codec UTF8 = utf8;
 
 /**
  * A [Utf8Codec] encodes strings to utf-8 code units (bytes) and decodes
diff --git a/sdk/lib/core/date_time.dart b/sdk/lib/core/date_time.dart
index 793b7e3..75aba53 100644
--- a/sdk/lib/core/date_time.dart
+++ b/sdk/lib/core/date_time.dart
@@ -131,23 +131,6 @@
   static const int sunday = 7;
   static const int daysPerWeek = 7;
 
-  @Deprecated("Use monday instead")
-  static const int MONDAY = monday;
-  @Deprecated("Use tuesday instead")
-  static const int TUESDAY = tuesday;
-  @Deprecated("Use wednesday instead")
-  static const int WEDNESDAY = wednesday;
-  @Deprecated("Use thursday instead")
-  static const int THURSDAY = thursday;
-  @Deprecated("Use friday instead")
-  static const int FRIDAY = friday;
-  @Deprecated("Use saturday instead")
-  static const int SATURDAY = saturday;
-  @Deprecated("Use sunday instead")
-  static const int SUNDAY = sunday;
-  @Deprecated("Use daysPerWeek instead")
-  static const int DAYS_PER_WEEK = daysPerWeek;
-
   // Month constants that are returned by the [month] getter.
   static const int january = 1;
   static const int february = 2;
@@ -163,33 +146,6 @@
   static const int december = 12;
   static const int monthsPerYear = 12;
 
-  @Deprecated("Use january instead")
-  static const int JANUARY = january;
-  @Deprecated("Use february instead")
-  static const int FEBRUARY = february;
-  @Deprecated("Use march instead")
-  static const int MARCH = march;
-  @Deprecated("Use april instead")
-  static const int APRIL = april;
-  @Deprecated("Use may instead")
-  static const int MAY = may;
-  @Deprecated("Use june instead")
-  static const int JUNE = june;
-  @Deprecated("Use july instead")
-  static const int JULY = july;
-  @Deprecated("Use august instead")
-  static const int AUGUST = august;
-  @Deprecated("Use september instead")
-  static const int SEPTEMBER = september;
-  @Deprecated("Use october instead")
-  static const int OCTOBER = october;
-  @Deprecated("Use november instead")
-  static const int NOVEMBER = november;
-  @Deprecated("Use december instead")
-  static const int DECEMBER = december;
-  @Deprecated("Use monthsPerYear instead")
-  static const int MONTHS_PER_YEAR = monthsPerYear;
-
   /**
    * The value of this DateTime.
    *
diff --git a/sdk/lib/core/double.dart b/sdk/lib/core/double.dart
index 89dd83b..167e18d 100644
--- a/sdk/lib/core/double.dart
+++ b/sdk/lib/core/double.dart
@@ -23,20 +23,10 @@
  * double.
  */
 abstract class double extends num {
-  @Deprecated("Use nan instead")
-  static const double NAN = nan;
   static const double nan = 0.0 / 0.0;
-  @Deprecated("Use infinity instead")
-  static const double INFINITY = infinity;
   static const double infinity = 1.0 / 0.0;
-  @Deprecated("Use negativeInfinity instead")
-  static const double NEGATIVE_INFINITY = negativeInfinity;
   static const double negativeInfinity = -infinity;
-  @Deprecated("Use minPositive instead")
-  static const double MIN_POSITIVE = minPositive;
   static const double minPositive = 5e-324;
-  @Deprecated("Use maxFinite instead")
-  static const double MAX_FINITE = maxFinite;
   static const double maxFinite = 1.7976931348623157e+308;
 
   double remainder(num other);
diff --git a/sdk/lib/core/duration.dart b/sdk/lib/core/duration.dart
index 393fa9d..d21bb2a 100644
--- a/sdk/lib/core/duration.dart
+++ b/sdk/lib/core/duration.dart
@@ -76,39 +76,6 @@
 
   static const Duration zero = const Duration(seconds: 0);
 
-  @Deprecated("Use microsecondsPerMillisecond instead")
-  static const int MICROSECONDS_PER_MILLISECOND = microsecondsPerMillisecond;
-  @Deprecated("Use millisecondsPerSecond instead")
-  static const int MILLISECONDS_PER_SECOND = millisecondsPerSecond;
-  @Deprecated("Use secondsPerMinute instead")
-  static const int SECONDS_PER_MINUTE = secondsPerMinute;
-  @Deprecated("Use minutesPerHour instead")
-  static const int MINUTES_PER_HOUR = minutesPerHour;
-  @Deprecated("Use hoursPerDay instead")
-  static const int HOURS_PER_DAY = hoursPerDay;
-  @Deprecated("Use microsecondsPerSecond instead")
-  static const int MICROSECONDS_PER_SECOND = microsecondsPerSecond;
-  @Deprecated("Use microsecondsPerMinute instead")
-  static const int MICROSECONDS_PER_MINUTE = microsecondsPerMinute;
-  @Deprecated("Use microsecondsPerHour instead")
-  static const int MICROSECONDS_PER_HOUR = microsecondsPerHour;
-  @Deprecated("Use microsecondsPerDay instead")
-  static const int MICROSECONDS_PER_DAY = microsecondsPerDay;
-  @Deprecated("Use millisecondsPerMinute instead")
-  static const int MILLISECONDS_PER_MINUTE = millisecondsPerMinute;
-  @Deprecated("Use millisecondsPerHour instead")
-  static const int MILLISECONDS_PER_HOUR = millisecondsPerHour;
-  @Deprecated("Use millisecondsPerDay instead")
-  static const int MILLISECONDS_PER_DAY = millisecondsPerDay;
-  @Deprecated("Use secondsPerHour instead")
-  static const int SECONDS_PER_HOUR = secondsPerHour;
-  @Deprecated("Use secondsPerDay instead")
-  static const int SECONDS_PER_DAY = secondsPerDay;
-  @Deprecated("Use minutesPerDay instead")
-  static const int MINUTES_PER_DAY = minutesPerDay;
-  @Deprecated("Use zero instead")
-  static const Duration ZERO = zero;
-
   /*
    * The value of this Duration object in microseconds.
    */
diff --git a/sdk/lib/isolate/isolate.dart b/sdk/lib/isolate/isolate.dart
index 92cf074..8b07a3a 100644
--- a/sdk/lib/isolate/isolate.dart
+++ b/sdk/lib/isolate/isolate.dart
@@ -70,12 +70,8 @@
 class Isolate {
   /** Argument to `ping` and `kill`: Ask for immediate action. */
   static const int immediate = 0;
-  @Deprecated("Use immediate instead")
-  static const int IMMEDIATE = immediate;
   /** Argument to `ping` and `kill`: Ask for action before the next event. */
   static const int beforeNextEvent = 1;
-  @Deprecated("Use beforeNextEvent instead")
-  static const int BEFORE_NEXT_EVENT = beforeNextEvent;
 
   /**
    * Control port used to send control messages to the isolate.
diff --git a/sdk/lib/math/math.dart b/sdk/lib/math/math.dart
index c975413..658c834 100644
--- a/sdk/lib/math/math.dart
+++ b/sdk/lib/math/math.dart
@@ -68,23 +68,6 @@
  */
 const double sqrt2 = 1.4142135623730951;
 
-@Deprecated("Use e instead")
-const double E = e;
-@Deprecated("Use ln10 instead")
-const double LN10 = ln10;
-@Deprecated("Use ln2 instead")
-const double LN2 = ln2;
-@Deprecated("Use log2e instead")
-const double LOG2E = log2e;
-@Deprecated("Use log10e instead")
-const double LOG10E = log10e;
-@Deprecated("Use pi instead")
-const double PI = pi;
-@Deprecated("Use sqrt1_2 instead")
-const double SQRT1_2 = sqrt1_2;
-@Deprecated("Use sqrt2 instead")
-const double SQRT2 = sqrt2;
-
 /**
   * Returns the lesser of two numbers.
   *
diff --git a/sdk/lib/typed_data/typed_data.dart b/sdk/lib/typed_data/typed_data.dart
index 3b284b5..4592c82 100644
--- a/sdk/lib/typed_data/typed_data.dart
+++ b/sdk/lib/typed_data/typed_data.dart
@@ -413,23 +413,11 @@
   List<double> operator +(List<double> other);
 }
 
-// TODO(lrn): Remove class for Dart 2.0.
-@Deprecated("Use Endian instead")
-abstract class Endianness {
-  Endianness._(); // prevent construction.
-  /** Deprecated, use [Endian.big] instead. */
-  static const Endian BIG_ENDIAN = Endian.big;
-  /** Deprecated, use [Endian.little] instead. */
-  static const Endian LITTLE_ENDIAN = Endian.little;
-  /** Deprecated, use [Endian.host] instead. */
-  static Endian get HOST_ENDIAN => Endian.host;
-}
-
 /**
  * Describes endianness to be used when accessing or updating a
  * sequence of bytes.
  */
-class Endian implements Endianness {
+class Endian {
   final bool _littleEndian;
   const Endian._(this._littleEndian);
 
@@ -783,8 +771,6 @@
     return buffer.asInt8List(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 1;
 }
 
@@ -842,8 +828,6 @@
    */
   List<int> operator +(List<int> other);
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 1;
 }
 
@@ -893,8 +877,6 @@
     return buffer.asUint8ClampedList(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 1;
 }
 
@@ -947,8 +929,6 @@
     return buffer.asInt16List(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 2;
 }
 
@@ -1002,8 +982,6 @@
     return buffer.asUint16List(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 2;
 }
 
@@ -1056,8 +1034,6 @@
     return buffer.asInt32List(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 4;
 }
 
@@ -1111,8 +1087,6 @@
     return buffer.asUint32List(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 4;
 }
 
@@ -1165,8 +1139,6 @@
     return buffer.asInt64List(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 8;
 }
 
@@ -1220,8 +1192,6 @@
     return buffer.asUint64List(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 8;
 }
 
@@ -1275,8 +1245,6 @@
     return buffer.asFloat32List(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 4;
 }
 
@@ -1323,8 +1291,6 @@
     return buffer.asFloat64List(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 8;
 }
 
@@ -1378,8 +1344,6 @@
    */
   List<Float32x4> operator +(List<Float32x4> other);
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 16;
 }
 
@@ -1433,8 +1397,6 @@
    */
   List<Int32x4> operator +(List<Int32x4> other);
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 16;
 }
 
@@ -1488,8 +1450,6 @@
     return buffer.asFloat64x2List(offsetInBytes, length);
   }
 
-  @Deprecated("Use bytesPerElement instead")
-  static const int BYTES_PER_ELEMENT = bytesPerElement;
   static const int bytesPerElement = 16;
 }
 
@@ -1828,518 +1788,6 @@
   static const int wwwy = 0x7F;
   static const int wwwz = 0xBF;
   static const int wwww = 0xFF;
-  @Deprecated("Use xxxx instead")
-  static const int XXXX = xxxx;
-  @Deprecated("Use xxxy instead")
-  static const int XXXY = xxxy;
-  @Deprecated("Use xxxz instead")
-  static const int XXXZ = xxxz;
-  @Deprecated("Use xxxw instead")
-  static const int XXXW = xxxw;
-  @Deprecated("Use xxyx instead")
-  static const int XXYX = xxyx;
-  @Deprecated("Use xxyy instead")
-  static const int XXYY = xxyy;
-  @Deprecated("Use xxyz instead")
-  static const int XXYZ = xxyz;
-  @Deprecated("Use xxyw instead")
-  static const int XXYW = xxyw;
-  @Deprecated("Use xxzx instead")
-  static const int XXZX = xxzx;
-  @Deprecated("Use xxzy instead")
-  static const int XXZY = xxzy;
-  @Deprecated("Use xxzz instead")
-  static const int XXZZ = xxzz;
-  @Deprecated("Use xxzw instead")
-  static const int XXZW = xxzw;
-  @Deprecated("Use xxwx instead")
-  static const int XXWX = xxwx;
-  @Deprecated("Use xxwy instead")
-  static const int XXWY = xxwy;
-  @Deprecated("Use xxwz instead")
-  static const int XXWZ = xxwz;
-  @Deprecated("Use xxww instead")
-  static const int XXWW = xxww;
-  @Deprecated("Use xyxx instead")
-  static const int XYXX = xyxx;
-  @Deprecated("Use xyxy instead")
-  static const int XYXY = xyxy;
-  @Deprecated("Use xyxz instead")
-  static const int XYXZ = xyxz;
-  @Deprecated("Use xyxw instead")
-  static const int XYXW = xyxw;
-  @Deprecated("Use xyyx instead")
-  static const int XYYX = xyyx;
-  @Deprecated("Use xyyy instead")
-  static const int XYYY = xyyy;
-  @Deprecated("Use xyyz instead")
-  static const int XYYZ = xyyz;
-  @Deprecated("Use xyyw instead")
-  static const int XYYW = xyyw;
-  @Deprecated("Use xyzx instead")
-  static const int XYZX = xyzx;
-  @Deprecated("Use xyzy instead")
-  static const int XYZY = xyzy;
-  @Deprecated("Use xyzz instead")
-  static const int XYZZ = xyzz;
-  @Deprecated("Use xyzw instead")
-  static const int XYZW = xyzw;
-  @Deprecated("Use xywx instead")
-  static const int XYWX = xywx;
-  @Deprecated("Use xywy instead")
-  static const int XYWY = xywy;
-  @Deprecated("Use xywz instead")
-  static const int XYWZ = xywz;
-  @Deprecated("Use xyww instead")
-  static const int XYWW = xyww;
-  @Deprecated("Use xzxx instead")
-  static const int XZXX = xzxx;
-  @Deprecated("Use xzxy instead")
-  static const int XZXY = xzxy;
-  @Deprecated("Use xzxz instead")
-  static const int XZXZ = xzxz;
-  @Deprecated("Use xzxw instead")
-  static const int XZXW = xzxw;
-  @Deprecated("Use xzyx instead")
-  static const int XZYX = xzyx;
-  @Deprecated("Use xzyy instead")
-  static const int XZYY = xzyy;
-  @Deprecated("Use xzyz instead")
-  static const int XZYZ = xzyz;
-  @Deprecated("Use xzyw instead")
-  static const int XZYW = xzyw;
-  @Deprecated("Use xzzx instead")
-  static const int XZZX = xzzx;
-  @Deprecated("Use xzzy instead")
-  static const int XZZY = xzzy;
-  @Deprecated("Use xzzz instead")
-  static const int XZZZ = xzzz;
-  @Deprecated("Use xzzw instead")
-  static const int XZZW = xzzw;
-  @Deprecated("Use xzwx instead")
-  static const int XZWX = xzwx;
-  @Deprecated("Use xzwy instead")
-  static const int XZWY = xzwy;
-  @Deprecated("Use xzwz instead")
-  static const int XZWZ = xzwz;
-  @Deprecated("Use xzww instead")
-  static const int XZWW = xzww;
-  @Deprecated("Use xwxx instead")
-  static const int XWXX = xwxx;
-  @Deprecated("Use xwxy instead")
-  static const int XWXY = xwxy;
-  @Deprecated("Use xwxz instead")
-  static const int XWXZ = xwxz;
-  @Deprecated("Use xwxw instead")
-  static const int XWXW = xwxw;
-  @Deprecated("Use xwyx instead")
-  static const int XWYX = xwyx;
-  @Deprecated("Use xwyy instead")
-  static const int XWYY = xwyy;
-  @Deprecated("Use xwyz instead")
-  static const int XWYZ = xwyz;
-  @Deprecated("Use xwyw instead")
-  static const int XWYW = xwyw;
-  @Deprecated("Use xwzx instead")
-  static const int XWZX = xwzx;
-  @Deprecated("Use xwzy instead")
-  static const int XWZY = xwzy;
-  @Deprecated("Use xwzz instead")
-  static const int XWZZ = xwzz;
-  @Deprecated("Use xwzw instead")
-  static const int XWZW = xwzw;
-  @Deprecated("Use xwwx instead")
-  static const int XWWX = xwwx;
-  @Deprecated("Use xwwy instead")
-  static const int XWWY = xwwy;
-  @Deprecated("Use xwwz instead")
-  static const int XWWZ = xwwz;
-  @Deprecated("Use xwww instead")
-  static const int XWWW = xwww;
-  @Deprecated("Use yxxx instead")
-  static const int YXXX = yxxx;
-  @Deprecated("Use yxxy instead")
-  static const int YXXY = yxxy;
-  @Deprecated("Use yxxz instead")
-  static const int YXXZ = yxxz;
-  @Deprecated("Use yxxw instead")
-  static const int YXXW = yxxw;
-  @Deprecated("Use yxyx instead")
-  static const int YXYX = yxyx;
-  @Deprecated("Use yxyy instead")
-  static const int YXYY = yxyy;
-  @Deprecated("Use yxyz instead")
-  static const int YXYZ = yxyz;
-  @Deprecated("Use yxyw instead")
-  static const int YXYW = yxyw;
-  @Deprecated("Use yxzx instead")
-  static const int YXZX = yxzx;
-  @Deprecated("Use yxzy instead")
-  static const int YXZY = yxzy;
-  @Deprecated("Use yxzz instead")
-  static const int YXZZ = yxzz;
-  @Deprecated("Use yxzw instead")
-  static const int YXZW = yxzw;
-  @Deprecated("Use yxwx instead")
-  static const int YXWX = yxwx;
-  @Deprecated("Use yxwy instead")
-  static const int YXWY = yxwy;
-  @Deprecated("Use yxwz instead")
-  static const int YXWZ = yxwz;
-  @Deprecated("Use yxww instead")
-  static const int YXWW = yxww;
-  @Deprecated("Use yyxx instead")
-  static const int YYXX = yyxx;
-  @Deprecated("Use yyxy instead")
-  static const int YYXY = yyxy;
-  @Deprecated("Use yyxz instead")
-  static const int YYXZ = yyxz;
-  @Deprecated("Use yyxw instead")
-  static const int YYXW = yyxw;
-  @Deprecated("Use yyyx instead")
-  static const int YYYX = yyyx;
-  @Deprecated("Use yyyy instead")
-  static const int YYYY = yyyy;
-  @Deprecated("Use yyyz instead")
-  static const int YYYZ = yyyz;
-  @Deprecated("Use yyyw instead")
-  static const int YYYW = yyyw;
-  @Deprecated("Use yyzx instead")
-  static const int YYZX = yyzx;
-  @Deprecated("Use yyzy instead")
-  static const int YYZY = yyzy;
-  @Deprecated("Use yyzz instead")
-  static const int YYZZ = yyzz;
-  @Deprecated("Use yyzw instead")
-  static const int YYZW = yyzw;
-  @Deprecated("Use yywx instead")
-  static const int YYWX = yywx;
-  @Deprecated("Use yywy instead")
-  static const int YYWY = yywy;
-  @Deprecated("Use yywz instead")
-  static const int YYWZ = yywz;
-  @Deprecated("Use yyww instead")
-  static const int YYWW = yyww;
-  @Deprecated("Use yzxx instead")
-  static const int YZXX = yzxx;
-  @Deprecated("Use yzxy instead")
-  static const int YZXY = yzxy;
-  @Deprecated("Use yzxz instead")
-  static const int YZXZ = yzxz;
-  @Deprecated("Use yzxw instead")
-  static const int YZXW = yzxw;
-  @Deprecated("Use yzyx instead")
-  static const int YZYX = yzyx;
-  @Deprecated("Use yzyy instead")
-  static const int YZYY = yzyy;
-  @Deprecated("Use yzyz instead")
-  static const int YZYZ = yzyz;
-  @Deprecated("Use yzyw instead")
-  static const int YZYW = yzyw;
-  @Deprecated("Use yzzx instead")
-  static const int YZZX = yzzx;
-  @Deprecated("Use yzzy instead")
-  static const int YZZY = yzzy;
-  @Deprecated("Use yzzz instead")
-  static const int YZZZ = yzzz;
-  @Deprecated("Use yzzw instead")
-  static const int YZZW = yzzw;
-  @Deprecated("Use yzwx instead")
-  static const int YZWX = yzwx;
-  @Deprecated("Use yzwy instead")
-  static const int YZWY = yzwy;
-  @Deprecated("Use yzwz instead")
-  static const int YZWZ = yzwz;
-  @Deprecated("Use yzww instead")
-  static const int YZWW = yzww;
-  @Deprecated("Use ywxx instead")
-  static const int YWXX = ywxx;
-  @Deprecated("Use ywxy instead")
-  static const int YWXY = ywxy;
-  @Deprecated("Use ywxz instead")
-  static const int YWXZ = ywxz;
-  @Deprecated("Use ywxw instead")
-  static const int YWXW = ywxw;
-  @Deprecated("Use ywyx instead")
-  static const int YWYX = ywyx;
-  @Deprecated("Use ywyy instead")
-  static const int YWYY = ywyy;
-  @Deprecated("Use ywyz instead")
-  static const int YWYZ = ywyz;
-  @Deprecated("Use ywyw instead")
-  static const int YWYW = ywyw;
-  @Deprecated("Use ywzx instead")
-  static const int YWZX = ywzx;
-  @Deprecated("Use ywzy instead")
-  static const int YWZY = ywzy;
-  @Deprecated("Use ywzz instead")
-  static const int YWZZ = ywzz;
-  @Deprecated("Use ywzw instead")
-  static const int YWZW = ywzw;
-  @Deprecated("Use ywwx instead")
-  static const int YWWX = ywwx;
-  @Deprecated("Use ywwy instead")
-  static const int YWWY = ywwy;
-  @Deprecated("Use ywwz instead")
-  static const int YWWZ = ywwz;
-  @Deprecated("Use ywww instead")
-  static const int YWWW = ywww;
-  @Deprecated("Use zxxx instead")
-  static const int ZXXX = zxxx;
-  @Deprecated("Use zxxy instead")
-  static const int ZXXY = zxxy;
-  @Deprecated("Use zxxz instead")
-  static const int ZXXZ = zxxz;
-  @Deprecated("Use zxxw instead")
-  static const int ZXXW = zxxw;
-  @Deprecated("Use zxyx instead")
-  static const int ZXYX = zxyx;
-  @Deprecated("Use zxyy instead")
-  static const int ZXYY = zxyy;
-  @Deprecated("Use zxyz instead")
-  static const int ZXYZ = zxyz;
-  @Deprecated("Use zxyw instead")
-  static const int ZXYW = zxyw;
-  @Deprecated("Use zxzx instead")
-  static const int ZXZX = zxzx;
-  @Deprecated("Use zxzy instead")
-  static const int ZXZY = zxzy;
-  @Deprecated("Use zxzz instead")
-  static const int ZXZZ = zxzz;
-  @Deprecated("Use zxzw instead")
-  static const int ZXZW = zxzw;
-  @Deprecated("Use zxwx instead")
-  static const int ZXWX = zxwx;
-  @Deprecated("Use zxwy instead")
-  static const int ZXWY = zxwy;
-  @Deprecated("Use zxwz instead")
-  static const int ZXWZ = zxwz;
-  @Deprecated("Use zxww instead")
-  static const int ZXWW = zxww;
-  @Deprecated("Use zyxx instead")
-  static const int ZYXX = zyxx;
-  @Deprecated("Use zyxy instead")
-  static const int ZYXY = zyxy;
-  @Deprecated("Use zyxz instead")
-  static const int ZYXZ = zyxz;
-  @Deprecated("Use zyxw instead")
-  static const int ZYXW = zyxw;
-  @Deprecated("Use zyyx instead")
-  static const int ZYYX = zyyx;
-  @Deprecated("Use zyyy instead")
-  static const int ZYYY = zyyy;
-  @Deprecated("Use zyyz instead")
-  static const int ZYYZ = zyyz;
-  @Deprecated("Use zyyw instead")
-  static const int ZYYW = zyyw;
-  @Deprecated("Use zyzx instead")
-  static const int ZYZX = zyzx;
-  @Deprecated("Use zyzy instead")
-  static const int ZYZY = zyzy;
-  @Deprecated("Use zyzz instead")
-  static const int ZYZZ = zyzz;
-  @Deprecated("Use zyzw instead")
-  static const int ZYZW = zyzw;
-  @Deprecated("Use zywx instead")
-  static const int ZYWX = zywx;
-  @Deprecated("Use zywy instead")
-  static const int ZYWY = zywy;
-  @Deprecated("Use zywz instead")
-  static const int ZYWZ = zywz;
-  @Deprecated("Use zyww instead")
-  static const int ZYWW = zyww;
-  @Deprecated("Use zzxx instead")
-  static const int ZZXX = zzxx;
-  @Deprecated("Use zzxy instead")
-  static const int ZZXY = zzxy;
-  @Deprecated("Use zzxz instead")
-  static const int ZZXZ = zzxz;
-  @Deprecated("Use zzxw instead")
-  static const int ZZXW = zzxw;
-  @Deprecated("Use zzyx instead")
-  static const int ZZYX = zzyx;
-  @Deprecated("Use zzyy instead")
-  static const int ZZYY = zzyy;
-  @Deprecated("Use zzyz instead")
-  static const int ZZYZ = zzyz;
-  @Deprecated("Use zzyw instead")
-  static const int ZZYW = zzyw;
-  @Deprecated("Use zzzx instead")
-  static const int ZZZX = zzzx;
-  @Deprecated("Use zzzy instead")
-  static const int ZZZY = zzzy;
-  @Deprecated("Use zzzz instead")
-  static const int ZZZZ = zzzz;
-  @Deprecated("Use zzzw instead")
-  static const int ZZZW = zzzw;
-  @Deprecated("Use zzwx instead")
-  static const int ZZWX = zzwx;
-  @Deprecated("Use zzwy instead")
-  static const int ZZWY = zzwy;
-  @Deprecated("Use zzwz instead")
-  static const int ZZWZ = zzwz;
-  @Deprecated("Use zzww instead")
-  static const int ZZWW = zzww;
-  @Deprecated("Use zwxx instead")
-  static const int ZWXX = zwxx;
-  @Deprecated("Use zwxy instead")
-  static const int ZWXY = zwxy;
-  @Deprecated("Use zwxz instead")
-  static const int ZWXZ = zwxz;
-  @Deprecated("Use zwxw instead")
-  static const int ZWXW = zwxw;
-  @Deprecated("Use zwyx instead")
-  static const int ZWYX = zwyx;
-  @Deprecated("Use zwyy instead")
-  static const int ZWYY = zwyy;
-  @Deprecated("Use zwyz instead")
-  static const int ZWYZ = zwyz;
-  @Deprecated("Use zwyw instead")
-  static const int ZWYW = zwyw;
-  @Deprecated("Use zwzx instead")
-  static const int ZWZX = zwzx;
-  @Deprecated("Use zwzy instead")
-  static const int ZWZY = zwzy;
-  @Deprecated("Use zwzz instead")
-  static const int ZWZZ = zwzz;
-  @Deprecated("Use zwzw instead")
-  static const int ZWZW = zwzw;
-  @Deprecated("Use zwwx instead")
-  static const int ZWWX = zwwx;
-  @Deprecated("Use zwwy instead")
-  static const int ZWWY = zwwy;
-  @Deprecated("Use zwwz instead")
-  static const int ZWWZ = zwwz;
-  @Deprecated("Use zwww instead")
-  static const int ZWWW = zwww;
-  @Deprecated("Use wxxx instead")
-  static const int WXXX = wxxx;
-  @Deprecated("Use wxxy instead")
-  static const int WXXY = wxxy;
-  @Deprecated("Use wxxz instead")
-  static const int WXXZ = wxxz;
-  @Deprecated("Use wxxw instead")
-  static const int WXXW = wxxw;
-  @Deprecated("Use wxyx instead")
-  static const int WXYX = wxyx;
-  @Deprecated("Use wxyy instead")
-  static const int WXYY = wxyy;
-  @Deprecated("Use wxyz instead")
-  static const int WXYZ = wxyz;
-  @Deprecated("Use wxyw instead")
-  static const int WXYW = wxyw;
-  @Deprecated("Use wxzx instead")
-  static const int WXZX = wxzx;
-  @Deprecated("Use wxzy instead")
-  static const int WXZY = wxzy;
-  @Deprecated("Use wxzz instead")
-  static const int WXZZ = wxzz;
-  @Deprecated("Use wxzw instead")
-  static const int WXZW = wxzw;
-  @Deprecated("Use wxwx instead")
-  static const int WXWX = wxwx;
-  @Deprecated("Use wxwy instead")
-  static const int WXWY = wxwy;
-  @Deprecated("Use wxwz instead")
-  static const int WXWZ = wxwz;
-  @Deprecated("Use wxww instead")
-  static const int WXWW = wxww;
-  @Deprecated("Use wyxx instead")
-  static const int WYXX = wyxx;
-  @Deprecated("Use wyxy instead")
-  static const int WYXY = wyxy;
-  @Deprecated("Use wyxz instead")
-  static const int WYXZ = wyxz;
-  @Deprecated("Use wyxw instead")
-  static const int WYXW = wyxw;
-  @Deprecated("Use wyyx instead")
-  static const int WYYX = wyyx;
-  @Deprecated("Use wyyy instead")
-  static const int WYYY = wyyy;
-  @Deprecated("Use wyyz instead")
-  static const int WYYZ = wyyz;
-  @Deprecated("Use wyyw instead")
-  static const int WYYW = wyyw;
-  @Deprecated("Use wyzx instead")
-  static const int WYZX = wyzx;
-  @Deprecated("Use wyzy instead")
-  static const int WYZY = wyzy;
-  @Deprecated("Use wyzz instead")
-  static const int WYZZ = wyzz;
-  @Deprecated("Use wyzw instead")
-  static const int WYZW = wyzw;
-  @Deprecated("Use wywx instead")
-  static const int WYWX = wywx;
-  @Deprecated("Use wywy instead")
-  static const int WYWY = wywy;
-  @Deprecated("Use wywz instead")
-  static const int WYWZ = wywz;
-  @Deprecated("Use wyww instead")
-  static const int WYWW = wyww;
-  @Deprecated("Use wzxx instead")
-  static const int WZXX = wzxx;
-  @Deprecated("Use wzxy instead")
-  static const int WZXY = wzxy;
-  @Deprecated("Use wzxz instead")
-  static const int WZXZ = wzxz;
-  @Deprecated("Use wzxw instead")
-  static const int WZXW = wzxw;
-  @Deprecated("Use wzyx instead")
-  static const int WZYX = wzyx;
-  @Deprecated("Use wzyy instead")
-  static const int WZYY = wzyy;
-  @Deprecated("Use wzyz instead")
-  static const int WZYZ = wzyz;
-  @Deprecated("Use wzyw instead")
-  static const int WZYW = wzyw;
-  @Deprecated("Use wzzx instead")
-  static const int WZZX = wzzx;
-  @Deprecated("Use wzzy instead")
-  static const int WZZY = wzzy;
-  @Deprecated("Use wzzz instead")
-  static const int WZZZ = wzzz;
-  @Deprecated("Use wzzw instead")
-  static const int WZZW = wzzw;
-  @Deprecated("Use wzwx instead")
-  static const int WZWX = wzwx;
-  @Deprecated("Use wzwy instead")
-  static const int WZWY = wzwy;
-  @Deprecated("Use wzwz instead")
-  static const int WZWZ = wzwz;
-  @Deprecated("Use wzww instead")
-  static const int WZWW = wzww;
-  @Deprecated("Use wwxx instead")
-  static const int WWXX = wwxx;
-  @Deprecated("Use wwxy instead")
-  static const int WWXY = wwxy;
-  @Deprecated("Use wwxz instead")
-  static const int WWXZ = wwxz;
-  @Deprecated("Use wwxw instead")
-  static const int WWXW = wwxw;
-  @Deprecated("Use wwyx instead")
-  static const int WWYX = wwyx;
-  @Deprecated("Use wwyy instead")
-  static const int WWYY = wwyy;
-  @Deprecated("Use wwyz instead")
-  static const int WWYZ = wwyz;
-  @Deprecated("Use wwyw instead")
-  static const int WWYW = wwyw;
-  @Deprecated("Use wwzx instead")
-  static const int WWZX = wwzx;
-  @Deprecated("Use wwzy instead")
-  static const int WWZY = wwzy;
-  @Deprecated("Use wwzz instead")
-  static const int WWZZ = wwzz;
-  @Deprecated("Use wwzw instead")
-  static const int WWZW = wwzw;
-  @Deprecated("Use wwwx instead")
-  static const int WWWX = wwwx;
-  @Deprecated("Use wwwy instead")
-  static const int WWWY = wwwy;
-  @Deprecated("Use wwwz instead")
-  static const int WWWZ = wwwz;
-  @Deprecated("Use wwww instead")
-  static const int WWWW = wwww;
 
   /// Shuffle the lane values. [mask] must be one of the 256 shuffle constants.
   Float32x4 shuffle(int mask);
@@ -2679,518 +2127,6 @@
   static const int wwwy = 0x7F;
   static const int wwwz = 0xBF;
   static const int wwww = 0xFF;
-  @Deprecated("Use xxxx instead")
-  static const int XXXX = xxxx;
-  @Deprecated("Use xxxy instead")
-  static const int XXXY = xxxy;
-  @Deprecated("Use xxxz instead")
-  static const int XXXZ = xxxz;
-  @Deprecated("Use xxxw instead")
-  static const int XXXW = xxxw;
-  @Deprecated("Use xxyx instead")
-  static const int XXYX = xxyx;
-  @Deprecated("Use xxyy instead")
-  static const int XXYY = xxyy;
-  @Deprecated("Use xxyz instead")
-  static const int XXYZ = xxyz;
-  @Deprecated("Use xxyw instead")
-  static const int XXYW = xxyw;
-  @Deprecated("Use xxzx instead")
-  static const int XXZX = xxzx;
-  @Deprecated("Use xxzy instead")
-  static const int XXZY = xxzy;
-  @Deprecated("Use xxzz instead")
-  static const int XXZZ = xxzz;
-  @Deprecated("Use xxzw instead")
-  static const int XXZW = xxzw;
-  @Deprecated("Use xxwx instead")
-  static const int XXWX = xxwx;
-  @Deprecated("Use xxwy instead")
-  static const int XXWY = xxwy;
-  @Deprecated("Use xxwz instead")
-  static const int XXWZ = xxwz;
-  @Deprecated("Use xxww instead")
-  static const int XXWW = xxww;
-  @Deprecated("Use xyxx instead")
-  static const int XYXX = xyxx;
-  @Deprecated("Use xyxy instead")
-  static const int XYXY = xyxy;
-  @Deprecated("Use xyxz instead")
-  static const int XYXZ = xyxz;
-  @Deprecated("Use xyxw instead")
-  static const int XYXW = xyxw;
-  @Deprecated("Use xyyx instead")
-  static const int XYYX = xyyx;
-  @Deprecated("Use xyyy instead")
-  static const int XYYY = xyyy;
-  @Deprecated("Use xyyz instead")
-  static const int XYYZ = xyyz;
-  @Deprecated("Use xyyw instead")
-  static const int XYYW = xyyw;
-  @Deprecated("Use xyzx instead")
-  static const int XYZX = xyzx;
-  @Deprecated("Use xyzy instead")
-  static const int XYZY = xyzy;
-  @Deprecated("Use xyzz instead")
-  static const int XYZZ = xyzz;
-  @Deprecated("Use xyzw instead")
-  static const int XYZW = xyzw;
-  @Deprecated("Use xywx instead")
-  static const int XYWX = xywx;
-  @Deprecated("Use xywy instead")
-  static const int XYWY = xywy;
-  @Deprecated("Use xywz instead")
-  static const int XYWZ = xywz;
-  @Deprecated("Use xyww instead")
-  static const int XYWW = xyww;
-  @Deprecated("Use xzxx instead")
-  static const int XZXX = xzxx;
-  @Deprecated("Use xzxy instead")
-  static const int XZXY = xzxy;
-  @Deprecated("Use xzxz instead")
-  static const int XZXZ = xzxz;
-  @Deprecated("Use xzxw instead")
-  static const int XZXW = xzxw;
-  @Deprecated("Use xzyx instead")
-  static const int XZYX = xzyx;
-  @Deprecated("Use xzyy instead")
-  static const int XZYY = xzyy;
-  @Deprecated("Use xzyz instead")
-  static const int XZYZ = xzyz;
-  @Deprecated("Use xzyw instead")
-  static const int XZYW = xzyw;
-  @Deprecated("Use xzzx instead")
-  static const int XZZX = xzzx;
-  @Deprecated("Use xzzy instead")
-  static const int XZZY = xzzy;
-  @Deprecated("Use xzzz instead")
-  static const int XZZZ = xzzz;
-  @Deprecated("Use xzzw instead")
-  static const int XZZW = xzzw;
-  @Deprecated("Use xzwx instead")
-  static const int XZWX = xzwx;
-  @Deprecated("Use xzwy instead")
-  static const int XZWY = xzwy;
-  @Deprecated("Use xzwz instead")
-  static const int XZWZ = xzwz;
-  @Deprecated("Use xzww instead")
-  static const int XZWW = xzww;
-  @Deprecated("Use xwxx instead")
-  static const int XWXX = xwxx;
-  @Deprecated("Use xwxy instead")
-  static const int XWXY = xwxy;
-  @Deprecated("Use xwxz instead")
-  static const int XWXZ = xwxz;
-  @Deprecated("Use xwxw instead")
-  static const int XWXW = xwxw;
-  @Deprecated("Use xwyx instead")
-  static const int XWYX = xwyx;
-  @Deprecated("Use xwyy instead")
-  static const int XWYY = xwyy;
-  @Deprecated("Use xwyz instead")
-  static const int XWYZ = xwyz;
-  @Deprecated("Use xwyw instead")
-  static const int XWYW = xwyw;
-  @Deprecated("Use xwzx instead")
-  static const int XWZX = xwzx;
-  @Deprecated("Use xwzy instead")
-  static const int XWZY = xwzy;
-  @Deprecated("Use xwzz instead")
-  static const int XWZZ = xwzz;
-  @Deprecated("Use xwzw instead")
-  static const int XWZW = xwzw;
-  @Deprecated("Use xwwx instead")
-  static const int XWWX = xwwx;
-  @Deprecated("Use xwwy instead")
-  static const int XWWY = xwwy;
-  @Deprecated("Use xwwz instead")
-  static const int XWWZ = xwwz;
-  @Deprecated("Use xwww instead")
-  static const int XWWW = xwww;
-  @Deprecated("Use yxxx instead")
-  static const int YXXX = yxxx;
-  @Deprecated("Use yxxy instead")
-  static const int YXXY = yxxy;
-  @Deprecated("Use yxxz instead")
-  static const int YXXZ = yxxz;
-  @Deprecated("Use yxxw instead")
-  static const int YXXW = yxxw;
-  @Deprecated("Use yxyx instead")
-  static const int YXYX = yxyx;
-  @Deprecated("Use yxyy instead")
-  static const int YXYY = yxyy;
-  @Deprecated("Use yxyz instead")
-  static const int YXYZ = yxyz;
-  @Deprecated("Use yxyw instead")
-  static const int YXYW = yxyw;
-  @Deprecated("Use yxzx instead")
-  static const int YXZX = yxzx;
-  @Deprecated("Use yxzy instead")
-  static const int YXZY = yxzy;
-  @Deprecated("Use yxzz instead")
-  static const int YXZZ = yxzz;
-  @Deprecated("Use yxzw instead")
-  static const int YXZW = yxzw;
-  @Deprecated("Use yxwx instead")
-  static const int YXWX = yxwx;
-  @Deprecated("Use yxwy instead")
-  static const int YXWY = yxwy;
-  @Deprecated("Use yxwz instead")
-  static const int YXWZ = yxwz;
-  @Deprecated("Use yxww instead")
-  static const int YXWW = yxww;
-  @Deprecated("Use yyxx instead")
-  static const int YYXX = yyxx;
-  @Deprecated("Use yyxy instead")
-  static const int YYXY = yyxy;
-  @Deprecated("Use yyxz instead")
-  static const int YYXZ = yyxz;
-  @Deprecated("Use yyxw instead")
-  static const int YYXW = yyxw;
-  @Deprecated("Use yyyx instead")
-  static const int YYYX = yyyx;
-  @Deprecated("Use yyyy instead")
-  static const int YYYY = yyyy;
-  @Deprecated("Use yyyz instead")
-  static const int YYYZ = yyyz;
-  @Deprecated("Use yyyw instead")
-  static const int YYYW = yyyw;
-  @Deprecated("Use yyzx instead")
-  static const int YYZX = yyzx;
-  @Deprecated("Use yyzy instead")
-  static const int YYZY = yyzy;
-  @Deprecated("Use yyzz instead")
-  static const int YYZZ = yyzz;
-  @Deprecated("Use yyzw instead")
-  static const int YYZW = yyzw;
-  @Deprecated("Use yywx instead")
-  static const int YYWX = yywx;
-  @Deprecated("Use yywy instead")
-  static const int YYWY = yywy;
-  @Deprecated("Use yywz instead")
-  static const int YYWZ = yywz;
-  @Deprecated("Use yyww instead")
-  static const int YYWW = yyww;
-  @Deprecated("Use yzxx instead")
-  static const int YZXX = yzxx;
-  @Deprecated("Use yzxy instead")
-  static const int YZXY = yzxy;
-  @Deprecated("Use yzxz instead")
-  static const int YZXZ = yzxz;
-  @Deprecated("Use yzxw instead")
-  static const int YZXW = yzxw;
-  @Deprecated("Use yzyx instead")
-  static const int YZYX = yzyx;
-  @Deprecated("Use yzyy instead")
-  static const int YZYY = yzyy;
-  @Deprecated("Use yzyz instead")
-  static const int YZYZ = yzyz;
-  @Deprecated("Use yzyw instead")
-  static const int YZYW = yzyw;
-  @Deprecated("Use yzzx instead")
-  static const int YZZX = yzzx;
-  @Deprecated("Use yzzy instead")
-  static const int YZZY = yzzy;
-  @Deprecated("Use yzzz instead")
-  static const int YZZZ = yzzz;
-  @Deprecated("Use yzzw instead")
-  static const int YZZW = yzzw;
-  @Deprecated("Use yzwx instead")
-  static const int YZWX = yzwx;
-  @Deprecated("Use yzwy instead")
-  static const int YZWY = yzwy;
-  @Deprecated("Use yzwz instead")
-  static const int YZWZ = yzwz;
-  @Deprecated("Use yzww instead")
-  static const int YZWW = yzww;
-  @Deprecated("Use ywxx instead")
-  static const int YWXX = ywxx;
-  @Deprecated("Use ywxy instead")
-  static const int YWXY = ywxy;
-  @Deprecated("Use ywxz instead")
-  static const int YWXZ = ywxz;
-  @Deprecated("Use ywxw instead")
-  static const int YWXW = ywxw;
-  @Deprecated("Use ywyx instead")
-  static const int YWYX = ywyx;
-  @Deprecated("Use ywyy instead")
-  static const int YWYY = ywyy;
-  @Deprecated("Use ywyz instead")
-  static const int YWYZ = ywyz;
-  @Deprecated("Use ywyw instead")
-  static const int YWYW = ywyw;
-  @Deprecated("Use ywzx instead")
-  static const int YWZX = ywzx;
-  @Deprecated("Use ywzy instead")
-  static const int YWZY = ywzy;
-  @Deprecated("Use ywzz instead")
-  static const int YWZZ = ywzz;
-  @Deprecated("Use ywzw instead")
-  static const int YWZW = ywzw;
-  @Deprecated("Use ywwx instead")
-  static const int YWWX = ywwx;
-  @Deprecated("Use ywwy instead")
-  static const int YWWY = ywwy;
-  @Deprecated("Use ywwz instead")
-  static const int YWWZ = ywwz;
-  @Deprecated("Use ywww instead")
-  static const int YWWW = ywww;
-  @Deprecated("Use zxxx instead")
-  static const int ZXXX = zxxx;
-  @Deprecated("Use zxxy instead")
-  static const int ZXXY = zxxy;
-  @Deprecated("Use zxxz instead")
-  static const int ZXXZ = zxxz;
-  @Deprecated("Use zxxw instead")
-  static const int ZXXW = zxxw;
-  @Deprecated("Use zxyx instead")
-  static const int ZXYX = zxyx;
-  @Deprecated("Use zxyy instead")
-  static const int ZXYY = zxyy;
-  @Deprecated("Use zxyz instead")
-  static const int ZXYZ = zxyz;
-  @Deprecated("Use zxyw instead")
-  static const int ZXYW = zxyw;
-  @Deprecated("Use zxzx instead")
-  static const int ZXZX = zxzx;
-  @Deprecated("Use zxzy instead")
-  static const int ZXZY = zxzy;
-  @Deprecated("Use zxzz instead")
-  static const int ZXZZ = zxzz;
-  @Deprecated("Use zxzw instead")
-  static const int ZXZW = zxzw;
-  @Deprecated("Use zxwx instead")
-  static const int ZXWX = zxwx;
-  @Deprecated("Use zxwy instead")
-  static const int ZXWY = zxwy;
-  @Deprecated("Use zxwz instead")
-  static const int ZXWZ = zxwz;
-  @Deprecated("Use zxww instead")
-  static const int ZXWW = zxww;
-  @Deprecated("Use zyxx instead")
-  static const int ZYXX = zyxx;
-  @Deprecated("Use zyxy instead")
-  static const int ZYXY = zyxy;
-  @Deprecated("Use zyxz instead")
-  static const int ZYXZ = zyxz;
-  @Deprecated("Use zyxw instead")
-  static const int ZYXW = zyxw;
-  @Deprecated("Use zyyx instead")
-  static const int ZYYX = zyyx;
-  @Deprecated("Use zyyy instead")
-  static const int ZYYY = zyyy;
-  @Deprecated("Use zyyz instead")
-  static const int ZYYZ = zyyz;
-  @Deprecated("Use zyyw instead")
-  static const int ZYYW = zyyw;
-  @Deprecated("Use zyzx instead")
-  static const int ZYZX = zyzx;
-  @Deprecated("Use zyzy instead")
-  static const int ZYZY = zyzy;
-  @Deprecated("Use zyzz instead")
-  static const int ZYZZ = zyzz;
-  @Deprecated("Use zyzw instead")
-  static const int ZYZW = zyzw;
-  @Deprecated("Use zywx instead")
-  static const int ZYWX = zywx;
-  @Deprecated("Use zywy instead")
-  static const int ZYWY = zywy;
-  @Deprecated("Use zywz instead")
-  static const int ZYWZ = zywz;
-  @Deprecated("Use zyww instead")
-  static const int ZYWW = zyww;
-  @Deprecated("Use zzxx instead")
-  static const int ZZXX = zzxx;
-  @Deprecated("Use zzxy instead")
-  static const int ZZXY = zzxy;
-  @Deprecated("Use zzxz instead")
-  static const int ZZXZ = zzxz;
-  @Deprecated("Use zzxw instead")
-  static const int ZZXW = zzxw;
-  @Deprecated("Use zzyx instead")
-  static const int ZZYX = zzyx;
-  @Deprecated("Use zzyy instead")
-  static const int ZZYY = zzyy;
-  @Deprecated("Use zzyz instead")
-  static const int ZZYZ = zzyz;
-  @Deprecated("Use zzyw instead")
-  static const int ZZYW = zzyw;
-  @Deprecated("Use zzzx instead")
-  static const int ZZZX = zzzx;
-  @Deprecated("Use zzzy instead")
-  static const int ZZZY = zzzy;
-  @Deprecated("Use zzzz instead")
-  static const int ZZZZ = zzzz;
-  @Deprecated("Use zzzw instead")
-  static const int ZZZW = zzzw;
-  @Deprecated("Use zzwx instead")
-  static const int ZZWX = zzwx;
-  @Deprecated("Use zzwy instead")
-  static const int ZZWY = zzwy;
-  @Deprecated("Use zzwz instead")
-  static const int ZZWZ = zzwz;
-  @Deprecated("Use zzww instead")
-  static const int ZZWW = zzww;
-  @Deprecated("Use zwxx instead")
-  static const int ZWXX = zwxx;
-  @Deprecated("Use zwxy instead")
-  static const int ZWXY = zwxy;
-  @Deprecated("Use zwxz instead")
-  static const int ZWXZ = zwxz;
-  @Deprecated("Use zwxw instead")
-  static const int ZWXW = zwxw;
-  @Deprecated("Use zwyx instead")
-  static const int ZWYX = zwyx;
-  @Deprecated("Use zwyy instead")
-  static const int ZWYY = zwyy;
-  @Deprecated("Use zwyz instead")
-  static const int ZWYZ = zwyz;
-  @Deprecated("Use zwyw instead")
-  static const int ZWYW = zwyw;
-  @Deprecated("Use zwzx instead")
-  static const int ZWZX = zwzx;
-  @Deprecated("Use zwzy instead")
-  static const int ZWZY = zwzy;
-  @Deprecated("Use zwzz instead")
-  static const int ZWZZ = zwzz;
-  @Deprecated("Use zwzw instead")
-  static const int ZWZW = zwzw;
-  @Deprecated("Use zwwx instead")
-  static const int ZWWX = zwwx;
-  @Deprecated("Use zwwy instead")
-  static const int ZWWY = zwwy;
-  @Deprecated("Use zwwz instead")
-  static const int ZWWZ = zwwz;
-  @Deprecated("Use zwww instead")
-  static const int ZWWW = zwww;
-  @Deprecated("Use wxxx instead")
-  static const int WXXX = wxxx;
-  @Deprecated("Use wxxy instead")
-  static const int WXXY = wxxy;
-  @Deprecated("Use wxxz instead")
-  static const int WXXZ = wxxz;
-  @Deprecated("Use wxxw instead")
-  static const int WXXW = wxxw;
-  @Deprecated("Use wxyx instead")
-  static const int WXYX = wxyx;
-  @Deprecated("Use wxyy instead")
-  static const int WXYY = wxyy;
-  @Deprecated("Use wxyz instead")
-  static const int WXYZ = wxyz;
-  @Deprecated("Use wxyw instead")
-  static const int WXYW = wxyw;
-  @Deprecated("Use wxzx instead")
-  static const int WXZX = wxzx;
-  @Deprecated("Use wxzy instead")
-  static const int WXZY = wxzy;
-  @Deprecated("Use wxzz instead")
-  static const int WXZZ = wxzz;
-  @Deprecated("Use wxzw instead")
-  static const int WXZW = wxzw;
-  @Deprecated("Use wxwx instead")
-  static const int WXWX = wxwx;
-  @Deprecated("Use wxwy instead")
-  static const int WXWY = wxwy;
-  @Deprecated("Use wxwz instead")
-  static const int WXWZ = wxwz;
-  @Deprecated("Use wxww instead")
-  static const int WXWW = wxww;
-  @Deprecated("Use wyxx instead")
-  static const int WYXX = wyxx;
-  @Deprecated("Use wyxy instead")
-  static const int WYXY = wyxy;
-  @Deprecated("Use wyxz instead")
-  static const int WYXZ = wyxz;
-  @Deprecated("Use wyxw instead")
-  static const int WYXW = wyxw;
-  @Deprecated("Use wyyx instead")
-  static const int WYYX = wyyx;
-  @Deprecated("Use wyyy instead")
-  static const int WYYY = wyyy;
-  @Deprecated("Use wyyz instead")
-  static const int WYYZ = wyyz;
-  @Deprecated("Use wyyw instead")
-  static const int WYYW = wyyw;
-  @Deprecated("Use wyzx instead")
-  static const int WYZX = wyzx;
-  @Deprecated("Use wyzy instead")
-  static const int WYZY = wyzy;
-  @Deprecated("Use wyzz instead")
-  static const int WYZZ = wyzz;
-  @Deprecated("Use wyzw instead")
-  static const int WYZW = wyzw;
-  @Deprecated("Use wywx instead")
-  static const int WYWX = wywx;
-  @Deprecated("Use wywy instead")
-  static const int WYWY = wywy;
-  @Deprecated("Use wywz instead")
-  static const int WYWZ = wywz;
-  @Deprecated("Use wyww instead")
-  static const int WYWW = wyww;
-  @Deprecated("Use wzxx instead")
-  static const int WZXX = wzxx;
-  @Deprecated("Use wzxy instead")
-  static const int WZXY = wzxy;
-  @Deprecated("Use wzxz instead")
-  static const int WZXZ = wzxz;
-  @Deprecated("Use wzxw instead")
-  static const int WZXW = wzxw;
-  @Deprecated("Use wzyx instead")
-  static const int WZYX = wzyx;
-  @Deprecated("Use wzyy instead")
-  static const int WZYY = wzyy;
-  @Deprecated("Use wzyz instead")
-  static const int WZYZ = wzyz;
-  @Deprecated("Use wzyw instead")
-  static const int WZYW = wzyw;
-  @Deprecated("Use wzzx instead")
-  static const int WZZX = wzzx;
-  @Deprecated("Use wzzy instead")
-  static const int WZZY = wzzy;
-  @Deprecated("Use wzzz instead")
-  static const int WZZZ = wzzz;
-  @Deprecated("Use wzzw instead")
-  static const int WZZW = wzzw;
-  @Deprecated("Use wzwx instead")
-  static const int WZWX = wzwx;
-  @Deprecated("Use wzwy instead")
-  static const int WZWY = wzwy;
-  @Deprecated("Use wzwz instead")
-  static const int WZWZ = wzwz;
-  @Deprecated("Use wzww instead")
-  static const int WZWW = wzww;
-  @Deprecated("Use wwxx instead")
-  static const int WWXX = wwxx;
-  @Deprecated("Use wwxy instead")
-  static const int WWXY = wwxy;
-  @Deprecated("Use wwxz instead")
-  static const int WWXZ = wwxz;
-  @Deprecated("Use wwxw instead")
-  static const int WWXW = wwxw;
-  @Deprecated("Use wwyx instead")
-  static const int WWYX = wwyx;
-  @Deprecated("Use wwyy instead")
-  static const int WWYY = wwyy;
-  @Deprecated("Use wwyz instead")
-  static const int WWYZ = wwyz;
-  @Deprecated("Use wwyw instead")
-  static const int WWYW = wwyw;
-  @Deprecated("Use wwzx instead")
-  static const int WWZX = wwzx;
-  @Deprecated("Use wwzy instead")
-  static const int WWZY = wwzy;
-  @Deprecated("Use wwzz instead")
-  static const int WWZZ = wwzz;
-  @Deprecated("Use wwzw instead")
-  static const int WWZW = wwzw;
-  @Deprecated("Use wwwx instead")
-  static const int WWWX = wwwx;
-  @Deprecated("Use wwwy instead")
-  static const int WWWY = wwwy;
-  @Deprecated("Use wwwz instead")
-  static const int WWWZ = wwwz;
-  @Deprecated("Use wwww instead")
-  static const int WWWW = wwww;
 
   /// Shuffle the lane values. [mask] must be one of the 256 shuffle constants.
   Int32x4 shuffle(int mask);
diff --git a/tests/co19/co19-co19.status b/tests/co19/co19-co19.status
index a26dcc2..072f96a 100644
--- a/tests/co19/co19-co19.status
+++ b/tests/co19/co19-co19.status
@@ -9,46 +9,869 @@
 # In order to qualify here these tests need to fail both on the VM and dart2js.
 ### GENERAL FAILURES ###
 [ $runtime != none ]
+Language/Expressions/Numbers/static_type_of_double_t01: RuntimeError # Uppercase constants removed
+Language/Expressions/Object_Identity/constant_objects_t01: RuntimeError # Uppercase constants removed
+Language/Expressions/Object_Identity/double_t02: RuntimeError # Uppercase constants removed
+Language/Expressions/Type_Cast/syntax_t01: RuntimeError # Uppercase constants removed
 Language/Statements/Assert/syntax_t04: Pass, Fail # assert now has an optional second parameter.
+Language/Variables/constant_initialization_t03: CompileTimeError # Uppercase constants removed
+Language/Variables/constant_variable_t09: CompileTimeError # Uppercase constants removed
+LibTest/async/Future/Future.delayed_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/async/Zone/ROOT_A01_t01: RuntimeError # Uppercase constants removed
 LibTest/async/Zone/bindBinaryCallback_A01_t02: Fail # co19 issue 126
 LibTest/async/Zone/bindCallback_A01_t02: Fail # co19 issue 126
 LibTest/async/Zone/bindUnaryCallback_A01_t02: Fail # co19 issue 126
+LibTest/async/Zone/parent_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/DateTime/month_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/DateTime/weekday_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/HOURS_PER_DAY_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/MILLISECONDS_PER_DAY_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/MILLISECONDS_PER_HOUR_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/MILLISECONDS_PER_MINUTE_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/MILLISECONDS_PER_SECOND_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/MINUTES_PER_DAY_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/MINUTES_PER_HOUR_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/SECONDS_PER_DAY_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/SECONDS_PER_HOUR_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/SECONDS_PER_MINUTE_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Duration/static_properties_A01_t01: RuntimeError # Uppercase constants removed
 LibTest/core/RegExp/firstMatch_A01_t01: Fail # co19 issue 742
+LibTest/core/Uri/Uri_A06_t02: RuntimeError # Uppercase constants removed
+LibTest/core/Uri/Uri_A06_t03: RuntimeError # Uppercase constants removed
+LibTest/core/Uri/decodeComponent_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Uri/decodeFull_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Uri/decodeQueryComponent_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Uri/encodeComponent_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Uri/encodeFull_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Uri/encodeQueryComponent_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/Uri/encodeQueryComponent_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/INFINITY_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/double/INFINITY_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/INFINITY_A01_t03: RuntimeError # Uppercase constants removed
+LibTest/core/double/INFINITY_A01_t04: RuntimeError # Uppercase constants removed
+LibTest/core/double/NAN_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/double/NAN_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/NAN_A01_t03: RuntimeError # Uppercase constants removed
+LibTest/core/double/NAN_A01_t04: RuntimeError # Uppercase constants removed
+LibTest/core/double/NEGATIVE_INFINITY_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/double/NEGATIVE_INFINITY_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/NEGATIVE_INFINITY_A01_t03: RuntimeError # Uppercase constants removed
+LibTest/core/double/NEGATIVE_INFINITY_A01_t04: RuntimeError # Uppercase constants removed
+LibTest/core/double/ceilToDouble_A02_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/ceil_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/core/double/ceil_A02_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/floorToDouble_A02_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/floor_A02_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/operator_GE_A01_t03: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_GE_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_GT_A01_t03: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_GT_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_LE_A01_t03: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_LE_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_LT_A01_t03: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_LT_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_addition_A01_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_addition_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_division_A01_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_division_A01_t09: RuntimeError # Uppercase constants removed
+LibTest/core/double/operator_division_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_multiplication_A01_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_multiplication_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_remainder_A01_t04: RuntimeError # Uppercase constants removed
+LibTest/core/double/operator_subtraction_A01_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_truncating_division_A01_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_truncating_division_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/core/double/operator_unary_minus_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/operator_unary_minus_A01_t03: RuntimeError # Uppercase constants removed
+LibTest/core/double/parse_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/double/roundToDouble_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/core/double/roundToDouble_A02_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/round_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/core/double/round_A02_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/toStringAsExponential_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/double/toStringAsExponential_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/core/double/toStringAsPrecision_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/core/double/toStringAsPrecision_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/core/int/compareTo_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/core/int/operator_division_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/isolate/RawReceivePort/handler_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/isolate/SendPort/send_A01_t01: CompileTimeError, Timeout # Uppercase constants removed
+LibTest/isolate/SendPort/send_A01_t02: CompileTimeError # Uppercase constants removed
+LibTest/isolate/SendPort/send_A01_t03: CompileTimeError # Uppercase constants removed
+LibTest/math/MutableRectangle/operator_equality_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/math/MutableRectangle/operator_equality_A03_t01: RuntimeError # Uppercase constants removed
+LibTest/math/MutableRectangle/operator_equality_A04_t01: CompileTimeError # Uppercase constants removed
+LibTest/math/Point/Point_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/math/Point/magnitude_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/math/Point/operator_equality_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/math/Point/operator_equality_A03_t01: RuntimeError # Uppercase constants removed
+LibTest/math/Point/operator_equality_A04_t01: CompileTimeError # Uppercase constants removed
+LibTest/math/Rectangle/operator_equality_A02_t01: CompileTimeError # Uppercase constants removed
+LibTest/math/Rectangle/operator_equality_A03_t01: RuntimeError # Uppercase constants removed
+LibTest/math/Rectangle/operator_equality_A04_t01: CompileTimeError # Uppercase constants removed
+LibTest/math/acos_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/math/asin_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/math/atan2_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/math/atan2_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/math/atan2_A03_t01: RuntimeError # Uppercase constants removed
+LibTest/math/atan2_A04_t01: RuntimeError # Uppercase constants removed
+LibTest/math/atan2_A05_t01: RuntimeError # Uppercase constants removed
+LibTest/math/atan_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/math/atan_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/math/cos_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/math/exp_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/math/exp_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/math/log_A03_t01: RuntimeError # Uppercase constants removed
+LibTest/math/max_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/math/max_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/math/min_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/math/min_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A03_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A04_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A05_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A07_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A08_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A09_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A11_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A12_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A13_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A14_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A15_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A16_t01: RuntimeError # Uppercase constants removed
+LibTest/math/pow_A17_t01: RuntimeError # Uppercase constants removed
+LibTest/math/sin_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/math/sqrt_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/math/sqrt_A02_t02: RuntimeError # Uppercase constants removed
+LibTest/math/sqrt_A02_t03: RuntimeError # Uppercase constants removed
+LibTest/math/tan_A02_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/ByteData.view_A01_t02: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/ByteData/buffer_A01_t01: Fail # co19 r736 bug - sent comment.
+LibTest/typed_data/ByteData/getFloat32_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/getFloat64_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/getInt16_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/getInt32_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/getInt64_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/getInt8_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/ByteData/getUint16_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/getUint32_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/getUint8_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/ByteData/setFloat32_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/setFloat64_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/setInt16_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/setInt32_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/setInt64_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/setInt8_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/ByteData/setUint16_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/setUint32_A01_t01: RuntimeError # Uppercase constants removed
+LibTest/typed_data/ByteData/setUint8_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32List/Float32List.view_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32List/Float32List.view_A01_t02: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32List/Float32List.view_A06_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32List/buffer_A01_t01: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Float32List/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Float32List/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Float32List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32List/offsetInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32x4List/Float32x4List.view_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32x4List/Float32x4List.view_A01_t02: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32x4List/buffer_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32x4List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float32x4List/offsetInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float64List/Float64List.view_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float64List/Float64List.view_A01_t02: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float64List/Float64List.view_A06_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float64List/buffer_A01_t01: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Float64List/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Float64List/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Float64List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Float64List/offsetInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int16List/Int16List.view_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int16List/Int16List.view_A01_t02: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int16List/Int16List.view_A06_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int16List/buffer_A01_t01: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Int16List/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Int16List/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Int16List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int16List/offsetInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int32List/Int32List.view_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int32List/Int32List.view_A01_t02: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int32List/Int32List.view_A06_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int32List/buffer_A01_t01: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Int32List/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Int32List/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Int32List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int32List/offsetInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int32x4/Int32x4.fromFloat32x4Bits_A01_t02: RuntimeError # Uppercase constants removed
+LibTest/typed_data/Int64List/Int64List.view_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int64List/Int64List.view_A01_t02: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int64List/Int64List.view_A06_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int64List/buffer_A01_t01: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Int64List/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Int64List/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Int64List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int64List/offsetInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Int8List/Int8List.view_A01_t02: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Int8List/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Int8List/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Int8List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint16List/Uint16List.view_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint16List/Uint16List.view_A01_t02: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint16List/Uint16List.view_A06_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint16List/buffer_A01_t01: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Uint16List/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Uint16List/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Uint16List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint16List/offsetInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint32List/Uint32List.view_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint32List/Uint32List.view_A01_t02: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint32List/Uint32List.view_A06_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint32List/buffer_A01_t01: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Uint32List/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Uint32List/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Uint32List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint32List/offsetInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint64List/Uint64List.view_A06_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint64List/buffer_A01_t01: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Uint64List/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Uint64List/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Uint64List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint64List/offsetInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint8ClampedList/Uint8ClampedList.view_A01_t02: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Uint8ClampedList/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Uint8ClampedList/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Uint8ClampedList/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+LibTest/typed_data/Uint8List/Uint8List.view_A01_t02: RuntimeError # Uppercase constants removed.
 LibTest/typed_data/Uint8List/first_A01_t02: RuntimeError # co19 issue 130
 LibTest/typed_data/Uint8List/last_A01_t02: RuntimeError # co19 issue 130
+LibTest/typed_data/Uint8List/lengthInBytes_A01_t01: RuntimeError # Uppercase constants removed.
+Utils/tests/Expect/approxEquals_A01_t01: RuntimeError # Uppercase constants removed
+Utils/tests/Expect/approxEquals_A01_t02: RuntimeError # Uppercase constants removed
+Utils/tests/Expect/approxEquals_A01_t03: RuntimeError # Uppercase constants removed
+Utils/tests/Expect/approxEquals_A01_t04: RuntimeError # Uppercase constants removed
+Utils/tests/Expect/approxEquals_A02_t01: RuntimeError # Uppercase constants removed
+Utils/tests/Expect/approxEquals_A04_t01: RuntimeError # Uppercase constants removed
+Utils/tests/Expect/equals_A01_t04: RuntimeError # Uppercase constants removed
+Utils/tests/Expect/identical_A01_t01: RuntimeError # Uppercase constants removed
+Utils/tests/Expect/setEquals_A01_t02: RuntimeError # Uppercase constants removed
 
 # Tests that fail everywhere, including the analyzer.
 [ $strong ]
 Language/Expressions/Additive_Expressions/syntax_t01/07: CompileTimeError
+Language/Expressions/Await_Expressions/evaluation_throws_t01: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/evaluation_throws_t02: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/evaluation_throws_t03: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/evaluation_throws_t04: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/evaluation_throws_t06: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/evaluation_throws_t07: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/execution_t01: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/execution_t02: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/execution_t03: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/execution_t04: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/execution_t05: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/execution_t06: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/no_static_warning_t01: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/static_type_t01: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/static_type_t03: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/syntax_t01: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/syntax_t02: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/syntax_t10: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/value_t01: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/value_t02: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/value_t03: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Await_Expressions/value_t04: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_generator_invokation_t03: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_generator_invokation_t04: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_generator_invokation_t05: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_generator_invokation_t06: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_generator_invokation_t07: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_generator_invokation_t08: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_generator_invokation_t09: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_generator_invokation_t10: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_invokation_t03: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_invokation_t04: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_invokation_t05: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Function_Invocation/async_invokation_t06: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Numbers/static_type_of_double_t01: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Object_Identity/constant_objects_t01: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Object_Identity/double_t02: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Spawning_an_Isolate/new_isolate_t01: CompileTimeError # Uses Dart 1 constants
+Language/Expressions/Type_Cast/syntax_t01: CompileTimeError # Uses Dart 1 constants
+Language/Functions/function_body_short_syntax_t02: CompileTimeError # Uses Dart 1 constants
+Language/Functions/implicit_return_t02: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loop_t01: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loop_t02: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loops_t01: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loops_t02: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loops_t03: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loops_t04: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loops_t05: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loops_t06: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loops_t07: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loops_t08: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loops_t09: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Break/async_loops_t10: CompileTimeError # Uses Dart 1 constants
+Language/Statements/For/Asynchronous_For_in/enclosing_loop_t01: CompileTimeError # Uses Dart 1 constants
+Language/Statements/For/Asynchronous_For_in/execution_t04: CompileTimeError # Uses Dart 1 constants
+Language/Statements/For/syntax_t18: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Rethrow/execution_t01: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Rethrow/execution_t02: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Rethrow/execution_t03: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Rethrow/execution_t04: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/runtime_type_t05: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/runtime_type_t06: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/runtime_type_t07: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/syntax_t06: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/syntax_t07: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/syntax_t08: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/syntax_t09: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/syntax_t10: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/syntax_t11: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/syntax_t12: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Return/syntax_t13: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t01: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t02: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t03: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t04: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t05: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t06: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t07: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t08: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_sync_t01: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_sync_t02: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/execution_sync_t03: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/syntax_t04: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/syntax_t05: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield/syntax_t06: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t02: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t03: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t04: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t05: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t06: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t07: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t08: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t09: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t10: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t11: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/syntax_t04: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/syntax_t05: CompileTimeError # Uses Dart 1 constants
+Language/Statements/Yield_and_Yield_Each/Yield_Each/syntax_t06: CompileTimeError # Uses Dart 1 constants
+Language/Variables/constant_initialization_t03: CompileTimeError # Uses Dart 1 constants
+Language/Variables/constant_variable_t09: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Completer/completeError_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Completer/completeError_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Completer/completeError_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Completer/complete_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Completer/complete_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Completer/complete_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Completer/complete_A01_t05: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Completer/complete_A01_t06: CompileTimeError # Uses Dart 1 constants
+LibTest/async/DeferredLibrary/DeferredLibrary_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.delayed_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.delayed_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.delayed_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.delayed_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.error_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.error_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.microtask_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.microtask_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.microtask_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.sync_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.sync_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.sync_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.value_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future.value_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/Future_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/any_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/any_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/any_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/any_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/asStream_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/asStream_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/asStream_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/asStream_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/catchError_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/catchError_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/catchError_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/catchError_A03_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/catchError_A03_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/catchError_A03_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/doWhile_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/doWhile_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/then_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/then_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/then_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/then_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/then_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/then_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/then_A03_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/then_A05_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/then_A05_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/then_A05_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/timeout_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/timeout_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/timeout_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/timeout_A02_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/timeout_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A01_t05: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A01_t06: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A01_t07: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/wait_A04_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/whenComplete_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/whenComplete_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/whenComplete_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/whenComplete_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Future/whenComplete_A04_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/Stream.empty_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/Stream.eventTransformed_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/Stream.eventTransformed_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/Stream.fromIterable_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/Stream.periodic_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/Stream.periodic_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/any_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/any_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/any_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asBroadcastStream_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asBroadcastStream_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asBroadcastStream_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asBroadcastStream_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asBroadcastStream_A03_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asBroadcastStream_A03_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asBroadcastStream_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asBroadcastStream_A04_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asBroadcastStream_A04_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asyncExpand_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asyncExpand_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asyncMap_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asyncMap_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/asyncMap_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/contains_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/contains_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/contains_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/distinct_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/drain_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/drain_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/drain_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/elementAt_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/elementAt_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/elementAt_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/elementAt_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/every_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/every_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/expand_A01_t01: CompileTimeError # Uses Dart 1 constants
 LibTest/async/Stream/firstWhere_A01_t01: CompileTimeError # co19 issue 137
 LibTest/async/Stream/firstWhere_A02_t01: CompileTimeError # co19 issue 137
+LibTest/async/Stream/firstWhere_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/firstWhere_A03_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/first_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/first_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/first_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/first_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/fold_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/handleError_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/handleError_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/handleError_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/handleError_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/handleError_A04_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/handleError_A04_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/isEmpty_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/join_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/join_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/join_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/join_A02_t02: CompileTimeError # Uses Dart 1 constants
 LibTest/async/Stream/lastWhere_A01_t01: CompileTimeError # co19 issue 137
 LibTest/async/Stream/lastWhere_A02_t01: CompileTimeError # co19 issue 137
+LibTest/async/Stream/lastWhere_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/lastWhere_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/last_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/last_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/last_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/length_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/listen_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/listen_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/listen_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/listen_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/listen_A05_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/listen_A05_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/listen_A05_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/listen_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/map_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/reduce_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/reduce_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/singleWhere_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/single_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/single_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/single_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/skipWhile_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/skip_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/takeWhile_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/take_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/take_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/take_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/timeout_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/timeout_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/timeout_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/toList_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Stream/transform_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController.broadcast_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController.broadcast_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController.broadcast_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController.broadcast_A05_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController.broadcast_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController.broadcast_A07_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController.broadcast_A07_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController.broadcast_A08_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController_A05_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/StreamController_A06_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/addError_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/addError_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/addError_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/addStream_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/addStream_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/addStream_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/addStream_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/addStream_A03_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/add_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/close_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamController/done_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamIterator/cancel_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamIterator/current_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamIterator/current_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamIterator/moveNext_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamIterator/moveNext_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamSink/addError_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamSink/addStream_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamSink/addStream_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamSink/addStream_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamSink/addStream_A01_t05: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamSink/add_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamSink/close_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamSink/done_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamTransformer/StreamTransformer_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamTransformer/StreamTransformer_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamTransformer/StreamTransformer_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamTransformer/StreamTransformer_A03_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/StreamTransformer/bind_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Timer/Timer.periodic_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Timer/Timer.periodic_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Timer/Timer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Timer/Timer_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Timer/cancel_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Timer/isActive_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Timer/isActive_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Timer/run_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Timer/run_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/createPeriodicTimer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/createTimer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/current_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/handleUncaughtError_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/inSameErrorZone_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/inSameErrorZone_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/inSameErrorZone_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/inSameErrorZone_A01_t05: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/parent_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/scheduleMicrotask_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/async/Zone/scheduleMicrotask_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/DateTime/month_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/DateTime/weekday_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/HOURS_PER_DAY_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/MILLISECONDS_PER_DAY_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/MILLISECONDS_PER_HOUR_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/MILLISECONDS_PER_MINUTE_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/MILLISECONDS_PER_SECOND_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/MINUTES_PER_DAY_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/MINUTES_PER_HOUR_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/SECONDS_PER_DAY_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/SECONDS_PER_HOUR_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/SECONDS_PER_MINUTE_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Duration/static_properties_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/elapsedInMs_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/elapsedInUs_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/elapsedTicks_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/elapsedTicks_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/elapsedTicks_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/elapsed_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/elapsed_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/elapsed_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/start_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/start_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/start_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Stopwatch/stop_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Uri/Uri_A06_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Uri/Uri_A06_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Uri/decodeComponent_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Uri/decodeFull_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Uri/decodeQueryComponent_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Uri/encodeComponent_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Uri/encodeFull_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Uri/encodeQueryComponent_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/Uri/encodeQueryComponent_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/INFINITY_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/INFINITY_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/INFINITY_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/INFINITY_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/NAN_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/NAN_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/NAN_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/NAN_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/NEGATIVE_INFINITY_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/NEGATIVE_INFINITY_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/NEGATIVE_INFINITY_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/NEGATIVE_INFINITY_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/ceilToDouble_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/ceil_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/ceil_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/floorToDouble_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/floor_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/operator_addition_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/operator_division_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/operator_division_A01_t09: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/operator_multiplication_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/operator_subtraction_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/operator_truncating_division_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/operator_unary_minus_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/operator_unary_minus_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/parse_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/roundToDouble_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/roundToDouble_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/round_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/round_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/toStringAsExponential_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/toStringAsExponential_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/toStringAsPrecision_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/core/double/toStringAsPrecision_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/int/compareTo_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/core/int/operator_division_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawnUri_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawnUri_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawnUri_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawnUri_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawnUri_A01_t06: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawnUri_A01_t07: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawnUri_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawnUri_A02_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawnUri_A02_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawnUri_A02_t05: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A01_t05: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A01_t06: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A02_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A03_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A03_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A03_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A05_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/Isolate/spawn_A05_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/RawReceivePort/RawReceivePort_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/RawReceivePort/RawReceivePort_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/RawReceivePort/close_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/RawReceivePort/handler_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/RawReceivePort/sendPort_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/any_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/asBroadcastStream_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/asBroadcastStream_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/asBroadcastStream_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/asBroadcastStream_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/asBroadcastStream_A03_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/asBroadcastStream_A03_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/asBroadcastStream_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/asBroadcastStream_A04_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/asBroadcastStream_A04_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/close_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/close_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/contains_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/distinct_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/drain_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/drain_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/elementAt_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/elementAt_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/every_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/expand_A01_t01: CompileTimeError # Uses Dart 1 constants
 LibTest/isolate/ReceivePort/firstWhere_A01_t01: CompileTimeError # co19 issue 137
 LibTest/isolate/ReceivePort/firstWhere_A02_t01: CompileTimeError # co19 issue 137
+LibTest/isolate/ReceivePort/firstWhere_A03_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/first_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/first_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/first_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/fold_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/isEmpty_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/join_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/join_A01_t02: CompileTimeError # Uses Dart 1 constants
 LibTest/isolate/ReceivePort/lastWhere_A01_t01: CompileTimeError # co19 issue 137
 LibTest/isolate/ReceivePort/lastWhere_A02_t01: CompileTimeError # co19 issue 137
+LibTest/isolate/ReceivePort/lastWhere_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/last_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/last_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/length_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/listen_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/map_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/pipe_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/reduce_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/reduce_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/singleWhere_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/single_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/single_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/skipWhile_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/skip_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/takeWhile_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/take_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/take_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/take_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/toList_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/ReceivePort/transform_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/SendPort/send_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/SendPort/send_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/SendPort/send_A01_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/SendPort/send_A01_t04: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/SendPort/send_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/isolate/SendPort/send_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/math/MutableRectangle/operator_equality_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/MutableRectangle/operator_equality_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/MutableRectangle/operator_equality_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/Point/Point_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/Point/magnitude_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/Point/operator_equality_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/Point/operator_equality_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/Point/operator_equality_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/Rectangle/operator_equality_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/Rectangle/operator_equality_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/Rectangle/operator_equality_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/acos_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/asin_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/atan2_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/math/atan2_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/atan2_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/atan2_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/atan2_A05_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/atan_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/math/atan_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/cos_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/exp_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/math/exp_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/log_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A03_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A04_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A05_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A07_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A08_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A09_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A11_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A12_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A13_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A14_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A15_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A16_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/pow_A17_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/sin_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/math/sqrt_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/math/sqrt_A02_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/math/sqrt_A02_t03: CompileTimeError # Uses Dart 1 constants
+LibTest/math/tan_A02_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/getFloat32_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/getFloat64_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/getInt16_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/getInt32_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/getInt64_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/getInt8_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/getUint16_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/getUint32_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/getUint8_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/setFloat32_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/setFloat64_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/setInt16_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/setInt32_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/setInt64_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/setInt8_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/setUint16_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/setUint32_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/ByteData/setUint8_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32List/Float32List.view_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32List/Float32List.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32List/Float32List.view_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32List/buffer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32List/offsetInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32x4List/Float32x4List.view_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32x4List/Float32x4List.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32x4List/buffer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32x4List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float32x4List/offsetInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float64List/Float64List.view_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float64List/Float64List.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float64List/Float64List.view_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float64List/buffer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float64List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Float64List/offsetInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int16List/Int16List.view_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int16List/Int16List.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int16List/Int16List.view_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int16List/buffer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int16List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int16List/offsetInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int32List/Int32List.view_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int32List/Int32List.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int32List/Int32List.view_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int32List/buffer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int32List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int32List/offsetInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int32x4/Int32x4.fromFloat32x4Bits_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int64List/Int64List.view_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int64List/Int64List.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int64List/Int64List.view_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int64List/buffer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int64List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int64List/offsetInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int8List/Int8List.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Int8List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint16List/Uint16List.view_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint16List/Uint16List.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint16List/Uint16List.view_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint16List/buffer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint16List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint16List/offsetInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint32List/Uint32List.view_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint32List/Uint32List.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint32List/Uint32List.view_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint32List/buffer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint32List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint32List/offsetInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint64List/Uint64List.view_A06_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint64List/buffer_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint64List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint64List/offsetInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint8ClampedList/Uint8ClampedList.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint8ClampedList/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint8List/Uint8List.view_A01_t02: CompileTimeError # Uses Dart 1 constants
+LibTest/typed_data/Uint8List/lengthInBytes_A01_t01: CompileTimeError # Uses Dart 1 constants
+Utils/tests/Expect/approxEquals_A01_t01: CompileTimeError # Uses Dart 1 constants
+Utils/tests/Expect/approxEquals_A01_t02: CompileTimeError # Uses Dart 1 constants
+Utils/tests/Expect/approxEquals_A01_t03: CompileTimeError # Uses Dart 1 constants
+Utils/tests/Expect/approxEquals_A01_t04: CompileTimeError # Uses Dart 1 constants
+Utils/tests/Expect/approxEquals_A02_t01: CompileTimeError # Uses Dart 1 constants
+Utils/tests/Expect/approxEquals_A04_t01: CompileTimeError # Uses Dart 1 constants
+Utils/tests/Expect/equals_A01_t04: CompileTimeError # Uses Dart 1 constants
+Utils/tests/Expect/identical_A01_t01: CompileTimeError # Uses Dart 1 constants
+Utils/tests/Expect/setEquals_A01_t02: CompileTimeError # Uses Dart 1 constants
 
 [ !$strong ]
 LibTest/async/Stream/firstWhere_A01_t01: RuntimeError # co19 issue 137
diff --git a/tests/co19/co19-kernel.status b/tests/co19/co19-kernel.status
index 3cc75c9..a716a8e 100644
--- a/tests/co19/co19-kernel.status
+++ b/tests/co19/co19-kernel.status
@@ -11,6 +11,7 @@
 Language/Functions/Formal_Parameters/Optional_Formals/default_value_t02: MissingCompileTimeError
 Language/Mixins/Mixin_Application/syntax_t21: CompileTimeError
 Language/Types/Type_Void/syntax_t08: MissingCompileTimeError
+Language/Types/Type_Void/syntax_t09: MissingCompileTimeError
 LayoutTests/*: Skip # TODO(ahe): Make dart:html available.
 LibTest/collection/Maps/*: Skip # Maps class no longer exists.
 LibTest/html/*: Skip # TODO(ahe): Make dart:html available.
@@ -581,8 +582,6 @@
 Language/Expressions/Lists/static_type_t05: CompileTimeError
 Language/Expressions/Lists/value_of_a_constant_list_t02: CompileTimeError
 Language/Expressions/Logical_Boolean_Expressions/evaluation_form_and_t01: CompileTimeError
-Language/Expressions/Logical_Boolean_Expressions/evaluation_form_and_t02: CompileTimeError
-Language/Expressions/Logical_Boolean_Expressions/evaluation_form_or_t02: CompileTimeError
 Language/Expressions/Logical_Boolean_Expressions/static_type_t02: CompileTimeError
 Language/Expressions/Logical_Boolean_Expressions/syntax_t01: CompileTimeError
 Language/Expressions/Logical_Boolean_Expressions/syntax_t10/01: CompileTimeError
@@ -896,7 +895,6 @@
 Language/Functions/async_return_type_t01: CompileTimeError
 Language/Functions/generator_return_type_t01: CompileTimeError
 Language/Functions/generator_return_type_t02: CompileTimeError
-Language/Functions/implicit_return_t01: CompileTimeError
 Language/Functions/syntax_t01: CompileTimeError
 Language/Functions/syntax_t36: CompileTimeError
 Language/Functions/syntax_t37: CompileTimeError
@@ -917,7 +915,6 @@
 Language/Interfaces/Superinterfaces/Inheritance_and_Overriding/inheritance_t04: CompileTimeError
 Language/Interfaces/Superinterfaces/Inheritance_and_Overriding/inheritance_t05: CompileTimeError
 Language/Interfaces/Superinterfaces/Inheritance_and_Overriding/inheritance_t07: CompileTimeError
-Language/Interfaces/Superinterfaces/Inheritance_and_Overriding/not_overriden_members_t01: CompileTimeError
 Language/Interfaces/Superinterfaces/Inheritance_and_Overriding/not_overriden_members_t02: CompileTimeError
 Language/Interfaces/Superinterfaces/Inheritance_and_Overriding/same_name_getters_type_t03: CompileTimeError
 Language/Interfaces/Superinterfaces/Inheritance_and_Overriding/same_name_getters_type_t04: CompileTimeError
@@ -1027,7 +1024,6 @@
 Language/Statements/Continue/control_transfer_t09: CompileTimeError
 Language/Statements/Continue/label_t07: MissingCompileTimeError
 Language/Statements/Do/condition_type_t01: CompileTimeError
-Language/Statements/Do/condition_type_t02: CompileTimeError
 Language/Statements/Do/condition_type_t03: CompileTimeError
 Language/Statements/Do/execution_t03: CompileTimeError
 Language/Statements/Expression_Statements/syntax_t01: CompileTimeError
@@ -1125,13 +1121,8 @@
 Language/Types/Static_Types/malformed_type_t05: CompileTimeError
 Language/Types/Static_Types/malformed_type_t06: CompileTimeError
 Language/Types/Type_Declarations/Typedef/syntax_t01: CompileTimeError
-Language/Types/Type_Void/returning_t03: CompileTimeError
-Language/Types/Type_Void/returning_t04: CompileTimeError
-Language/Types/Type_Void/returning_t05: CompileTimeError
 Language/Types/Type_Void/syntax_t08: MissingCompileTimeError
-Language/Types/Type_Void/using_t01: CompileTimeError
-Language/Types/Type_Void/using_t02: CompileTimeError
-Language/Types/Type_Void/using_t03: CompileTimeError
+Language/Types/Type_Void/syntax_t09: MissingCompileTimeError
 Language/Variables/constant_variable_t01: CompileTimeError
 Language/Variables/constant_variable_t02: CompileTimeError
 Language/Variables/constant_variable_t03: CompileTimeError
@@ -1210,9 +1201,6 @@
 LibTest/async/Zone/registerBinaryCallback_A01_t01: CompileTimeError
 LibTest/async/Zone/registerCallback_A01_t01: CompileTimeError
 LibTest/async/Zone/registerUnaryCallback_A01_t01: CompileTimeError
-LibTest/async/Zone/runBinaryGuarded_A01_t01: CompileTimeError
-LibTest/async/Zone/runGuarded_A01_t01: CompileTimeError
-LibTest/async/Zone/runUnaryGuarded_A01_t01: CompileTimeError
 LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: CompileTimeError
 LibTest/collection/DoubleLinkedQueue/firstWhere_A02_t01: CompileTimeError
 LibTest/collection/DoubleLinkedQueue/firstWhere_A03_t01: CompileTimeError
diff --git a/tests/co19_2/co19_2-analyzer.status b/tests/co19_2/co19_2-analyzer.status
index e8976f4..d94473f 100644
--- a/tests/co19_2/co19_2-analyzer.status
+++ b/tests/co19_2/co19_2-analyzer.status
@@ -36,6 +36,11 @@
 Language/Expressions/Lists/constant_list_t01: CompileTimeError # Please triage this failure
 Language/Expressions/Maps/constant_map_t02: MissingCompileTimeError # Please triage this failure
 Language/Expressions/Maps/constant_map_type_t01: CompileTimeError # Please triage this failure
+Language/Expressions/Numbers/static_type_of_double_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Language/Expressions/Numbers/syntax_t09: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Language/Expressions/Object_Identity/constant_objects_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Language/Expressions/Object_Identity/double_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Language/Expressions/Type_Cast/syntax_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
 Language/Functions/generator_return_type_t02: MissingCompileTimeError # Issue 32192
 Language/Functions/generator_return_type_t06: MissingCompileTimeError # Issue 32192
 Language/Generics/scope_t03: CompileTimeError # Please triage this failure
@@ -63,6 +68,8 @@
 Language/Types/Interface_Types/subtype_t30: CompileTimeError # Please triage this failure
 Language/Types/Type_Void/syntax_t09: CompileTimeError # Please triage this failure
 Language/Types/Type_Void/using_t02: CompileTimeError # Please triage this failure
+Language/Variables/constant_initialization_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Language/Variables/constant_variable_t09: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
 Language/Variables/final_or_static_initialization_t01: MissingCompileTimeError # Issue 27510
 Language/Variables/final_or_static_initialization_t02: MissingCompileTimeError # Issue 27510
 Language/Variables/final_or_static_initialization_t03: MissingCompileTimeError # Issue 27510
@@ -102,3 +109,2999 @@
 LanguageFeatures/Super-bounded-types/static_analysis_A01_t07: CompileTimeError # Issue 32903
 LanguageFeatures/Super-bounded-types/static_analysis_A01_t08: CompileTimeError # Issue 32903
 LanguageFeatures/Super-bounded-types/static_analysis_A01_t09: CompileTimeError # Issue 32903
+LayoutTests/fast/alignment/parse-align-items_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/alignment/parse-align-self_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/alignment/parse-justify-self_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/animation/request-animation-frame-callback-id_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/animation/request-animation-frame-cancel2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/animation/request-animation-frame-cancel_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/animation/request-animation-frame-prefix_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/animation/request-animation-frame-timestamps-advance_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/animation/request-animation-frame-timestamps_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/animation/request-animation-frame-within-callback_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/animated-gif-as-background_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/background-fill-zero-area-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/background-position-parsing-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/background-repeat-computed-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/background-shorthand-with-backgroundSize-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/composite-highlight-is-invalid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/mask-box-image-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/multiple-backgrounds-assert_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/multiple-backgrounds-computed-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/multiple-backgrounds-initial-values_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/repeat/margin-shorthand_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/backgrounds/repeat/parsing-background-repeat_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/borders/border-color-visited_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/borders/border-image-width-negative_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/borders/border-image-width-numbers-computed-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/borders/border-radius-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/borders/border-width-percent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/box-shadow/box-shadow-parsing-invalid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/box-sizing/css-table-with-box-sizing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/box-sizing/table-cell_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/2d.composite.globalAlpha.fillPath_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/2d.fillText.gradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.gradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.negative_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.veryLarge_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.verySmall_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/DrawImageSinglePixelStretch_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/access-zero-sized-canvas_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/alpha_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/arc-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-2d-imageData-create-nonfinite_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-alphaImageData-behavior_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-arc-360-winding_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-arc-connecting-line_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-arc-negative-radius_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-arc-zero-lineto_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-as-image-incremental-repaint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-as-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-before-css_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-bezier-same-endpoint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blend-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blend-solid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-clipping_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-color-over-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-color-over-gradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-color-over-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-color-over-pattern_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-fill-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-global-alpha_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-gradient-over-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-gradient-over-gradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-gradient-over-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-gradient-over-pattern_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-image-over-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-image-over-gradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-image-over-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-image-over-pattern_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-pattern-over-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-pattern-over-gradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-pattern-over-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-pattern-over-pattern_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-blending-transforms_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-clearRect_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-clip-rule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-closePath-single-point_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-color-clamping_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-composite-alpha_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-composite-canvas_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-composite-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-composite-stroke-alpha_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-composite-text-alpha_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-copyPixels_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-css-crazy_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-currentColor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-currentTransform_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-drawImage-incomplete_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-drawImage-scaled-copy-to-self_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-ellipse-360-winding_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-ellipse-negative-radius_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-ellipse-zero-lineto_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-ellipse_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-empty-image-pattern_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-fill-rule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-fill-zeroSizeGradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-fillRect-zeroSizeGradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-fillRect_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-fillStyle-no-quirks-parsing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-fillText-invalid-maxWidth_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-fillText-zeroSizeGradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-font-consistency_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-font-ex-units-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-getContext-invalid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-getImageData-invalid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-getImageData-negative-source_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-getImageData-rounding_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-getImageData_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-gradient-without-path_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-imageSmoothingEnabled-repaint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-imageSmoothingEnabled_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-invalid-fillstyle_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-invalid-strokestyle_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-large-dimensions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-large-fills_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-largedraws_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-lineDash-input-sequence_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-lineDash-invalid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-lineDash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-lineWidth-intact-after-strokeRect_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-lineWidth_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-longlived-context_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-lose-restore-googol-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-lose-restore-max-int-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-measureText_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-modify-emptyPath_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-pattern-behaviour_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-pattern-modify_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-pattern-transform_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-putImageData_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-quadratic-same-endpoint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-radial-gradient-spreadMethod_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-resetTransform_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-resize-after-paint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-save-restore-with-path_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-save-restore_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-scale-drawImage-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-scale-fillPath-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-scale-fillRect-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-scale-shadowBlur_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-scale-strokePath-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-set-properties-with-non-invertible-ctm_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-setTransform_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-skia-excessive-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-state-intact-after-putImageData_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-stroke-empty-fill_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-stroke-zeroSizeGradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokePath-alpha-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokePath-cap-join_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokePath-gradient-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokePath-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokeRect-alpha-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokeRect-gradient-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokeRect-zeroSizeGradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokeRect_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokeText-invalid-maxWidth_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokeText-strokes-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-strokeText-zeroSizeGradient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-style-intact-after-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-to-canvas_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-toDataURL-case-insensitive-mimetype_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-toDataURL-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-toDataURL-jpeg-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-transforms-fillRect-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-transparency-and-composite_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-with-illegal-args_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas-with-incorrect-args_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/canvas_arc_largeangles_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/change-context_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/crash-set-font_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/draw-custom-focus-ring_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/draw-focus-if-needed-on-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/drawImage-with-broken-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/drawImage-with-negative-source-destination_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/drawImage-with-valid-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/drawImageFromRect_withToDataURLAsSource_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/fallback-content_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/fillText-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/fillrect-gradient-zero-stops_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/getPutImageDataPairTest_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/gradient-addColorStop-with-invalid-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/gradient-with-clip_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/invalid-set-font-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/linearGradient-infinite-values_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/pattern-with-transform_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/pointInPath_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/radialGradient-infinite-values_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/resize-while-save-active_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/rgba-parsing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/set-colors_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/setWidthResetAfterForcedRender_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/text-globalAlpha_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/toDataURL-noData_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/transformed-canvas-reset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/translate-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/array-bounds-clamping_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/attrib-location-length-limits_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/bad-arguments-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/buffer-bind-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/buffer-data-array-buffer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/canvas-2d-webgl-texture_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/canvas-resize-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/canvas-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/canvas-zero-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/compressed-tex-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias-t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/context-destroyed-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/context-lost-restored_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/context-lost_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/copy-tex-image-and-sub-image-2d_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/css-webkit-canvas-repaint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/css-webkit-canvas_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/draw-arrays-out-of-bounds_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/draw-elements-out-of-bounds_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/draw-webgl-to-canvas-2d_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/drawingbuffer-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/error-reporting_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/framebuffer-bindings-unaffected-on-resize_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/framebuffer-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/functions-returning-strings_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/get-active-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-bind-attrib-location-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-enable-enum-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-enum-tests_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-get-calls_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-getshadersource_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-getstring_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-object-get-calls_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-pixelstorei_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-teximage_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-uniformmatrix4fv_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-vertex-attrib-zero-issues_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-vertex-attrib_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/gl-vertexattribpointer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/glsl-conformance_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/incorrect-context-object-behaviour_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/index-validation-copies-indices_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/index-validation-crash-with-buffer-sub-data_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/index-validation-with-resized-buffer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/index-validation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/invalid-UTF-16_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/invalid-passed-params_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/is-object_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/null-object-behaviour_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/null-uniform-location_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/object-deletion-behaviour_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/oes-element-index-uint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/oes-vertex-array-object_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/point-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/premultiplyalpha-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/program-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/read-pixels-pack-alignment_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/read-pixels-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/renderbuffer-initialization_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/renderer-and-vendor-strings_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/shader-precision-format_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgb565_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba4444_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba5551_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgb565_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba4444_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba5551_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgb565_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba4444_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba5551_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-svg-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgb565_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba5551_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-and-uniform-binding-bugs_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-image-webgl_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-input-validation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-sub-image-2d_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/tex-sub-image-cube-maps_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/texImage2DImageDataTest_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/texImageTest_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/texture-active-bind_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/texture-bindings-uneffected-on-resize_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/texture-color-profile_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/texture-complete_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/texture-npot_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/triangle_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/uniform-location-length-limits_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/uniform-location_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/uninitialized-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/webgl-composite-modes-repaint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/webgl-composite-modes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/webgl-depth-texture_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/webgl-exceptions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/webgl-large-texture_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/webgl-layer-update_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/webgl-specific_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/webgl-texture-binding-preserved_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/webgl-unprefixed-context-id_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/webgl/webgl-viewport-parameters-preserved_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/winding-enumeration_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/canvas/zero-size-fill-rect_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/cookies/local-file-can-set-cookies_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/after-with-first-letter-float-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/before-content-with-list-marker-in-anon-block-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/block-after_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/bug-106384_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/bug91547_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/details-before-after-content_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/empty-content-with-float-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/first-letter-next-sibling-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/float-first-letter-siblings-convert-to-inline_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/floating-before-content-with-list-marker-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/hit-test-generated-content_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/malformed-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/media-generated-content_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/positioned-generated-content-under-run-in-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/pseudo-animation-before-onload_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/pseudo-animation-display_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/pseudo-animation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/pseudo-element-events_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/pseudo-transition-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/pseudo-transition_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/quote-first-letter-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/quote-layout-focus-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/remove-div-from-flexible-box-with-floating-after-content-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/reset-content-to-initial_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/summary-before-after-content_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/table-row-after-no-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/table-with-scrollbar-corner_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-generated-content/text-before-table-col-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/anonymous-grid-items_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/auto-content-resolution-rows_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/breadth-size-resolution-grid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/calc-resolution-grid-item_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/display-grid-set-get_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/flex-and-minmax-content-resolution-rows_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/flex-content-resolution-columns_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/flex-content-resolution-rows_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-get-set_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-auto-flow-update_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-container-change-explicit-grid-recompute-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-crash-out-of-flow-positioned-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-element-bad-cast-addchild_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-element-border-grid-item_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-element-border-padding-grid-item_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-element-empty-row-column_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-element-min-max-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-element-padding-grid-item_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-element-padding-margin_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-element-remove-svg-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-element-shrink-to-fit_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-area-get-set_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-bad-named-area-auto-placement_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-change-order-auto-flow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-display_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-horiz-bt_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-lr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-rl_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-margin-resolution_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-item-order-auto-flow-resolution_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-strict-ordering-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/grid-template-areas-get-set_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/implicit-rows-auto-resolution_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/justify-self-cell_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/minmax-fixed-logical-height-only_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/minmax-fixed-logical-width-only_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-in-percent-grid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-update_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item-update_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/percent-resolution-grid-item_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/place-cell-by-index_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-grid-layout/should-not-collapse-anonymous-blocks_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-intrinsic-dimensions/css-tables_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-intrinsic-dimensions/height-property-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-absolutes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-blocks_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-column-flex-items_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-flex-items_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-replaced-absolutes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-intrinsic-dimensions/tables_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-intrinsic-dimensions/width-property-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css-intrinsic-dimensions/width-shrinks-avoid-floats_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/MarqueeLayoutTest_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/add-remove-stylesheets-at-once-minimal-recalc-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/appearance-caps-lock-indicator_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/aspect-ratio-inheritance_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/aspect-ratio-parsing-tests_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/assert-marquee-not-last-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/attribute-selector-begin-dynamic-no-elementstyle_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/attribute-selector-recursive-update-on-setAttribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/auto-min-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/background-clip-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/background-currentcolor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/background-parser-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/background-position-inherit_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/background-position-serialize_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/background-serialize_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/border-image-fill-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/border-image-null-image-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/border-image-style-length_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/border-radius-property-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/border-shorthand-initialize-longhands_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/border-spacing-without-vertical-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/border-start-end_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/border-width-large_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/box-sizing-backwards-compat-prefix_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/box-sizing-border-box-dynamic-padding-border-update_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/button-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/cached-sheet-restore-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/case-sensitive-attr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/checked-pseudo-selector_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/child-selector-implicit-tbody_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/collapsed-whitespace-reattach-in-style-recalc_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/comment-before-charset-external_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/comment-before-charset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/computed-offset-with-zoom_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content-language-case-insensitivity_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content-language-dynamically-added_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content-language-dynamically-removed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content-language-mapped-to-webkit-locale_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content-language-multiple_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content-language-no-content_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content/content-none_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content/content-normal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content/content-quotes-01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content/content-quotes-02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content/content-quotes-03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content/content-quotes-04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content/content-quotes-05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content/content-quotes-06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/content/content-quotes-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/asterisk-counter-update-after-layout-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/complex-before_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/counter-before-selector-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/counter-cssText_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/counter-function-input-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/counter-function-input_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/counter-number-input_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/counter-reparent-table-children-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/counter-reset-subtree-insert-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/counter-ruby-text-cleared_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/counter-traverse-object-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/render-tree-reorg-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/counters/reparent-table-children-with-counters-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/crash-comparing-equal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/crash-on-incomplete-not_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/crash-on-incomplete-webkit-any_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css-escaped-identifier-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css-escaped-identifier_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css-keyframe-style-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css-keyframe-unexpected-end_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css-properties-case-insensitive_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css-selector-deeply-nested_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css-selector-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css-set-selector-text-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css3-nth-space_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css3-nth-tokens-script_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/css3-nth-tokens-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/cssText-cache_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/cssText-shorthand_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/cssom-remove-shorthand-property_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/csstext-of-content-string_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/cursor-parsing-image-set_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/cursor-parsing-quirks_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/cursor-parsing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/dashboard-regions-attr-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/dashboard-regions-undefined-length-assertion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/delete-rule-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/deprecated-flex-box-zero-width-intrinsic-max-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/deprecated-flexbox-auto-min-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/device-aspect-ratio_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/dfn-default-font-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/display-inline-block-scrollbar_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/display-none-inline-style-change-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/div_plus_nav_bug47971_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/draggable-region-parser_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/duplicate-property-in-rule-important_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/duplicate-property-in-rule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/dynamic-class-backdrop-pseudo_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/dynamic-class-pseudo-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/dynamic-pseudo-class_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/dynamic-style-attribute-query_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/empty-display-none_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/empty-first-line-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/emptyStyleTag_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/end-of-buffer-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/ex-unit-with-no-x-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/fill-layer-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/first-child-display-change-inverse_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/first-child-display-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/first-letter-anonymous-block-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/first-letter-block-form-controls-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/first-letter-capitalized-edit-select-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/first-letter-inline-flow-split-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/first-letter-inline-flow-split-table-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/first-letter-nested_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/first-letter-wbr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/first-line-parent-style-different_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/fixed-width-intrinsic-width-excludes-scrollbars_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/focus-display-block-inline_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-cache-bug_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-data-uri-invalid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-descending-unicode-range_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-font-family-descriptor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-html-as-svg_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-in-media-rule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-inherit-initial_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-insert-link_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-multiple-families_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-multiple-ranges-for-unicode-range_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-svg-decoding-error_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-unicode-range-load_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-unicode-range-monospace_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-unicode-range-overlap-load_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-unused-source-loaded_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-face-used-after-retired_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-family-builtins_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-family-initial-shorthand_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-family-trailing-bracket-gunk_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-property-priority_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-shorthand-from-longhands_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/font-shorthand-mix-inherit_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/fontface-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/fontfaceset-download-error_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/fontfaceset-events_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/fontfaceset-loadingdone_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/computed-style-border-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/computed-style-cross-fade_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/computed-style-display-none_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/computed-style-font_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/computed-style-negative-top_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/computed-style-page-break-inside_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/computed-style-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/computed-style-select-overflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/computed-style-with-zoom_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/counterIncrement-without-counter_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/font-family-fallback-reset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-box_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-image-slice_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-radius-shorthand_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-style-shorthand_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-borderRadius-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-column-rule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-length-unit_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-outline-offset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-relayout_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-text-overflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-zIndex-auto_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/getComputedStyle-zoom-and-background-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/pending-stylesheet_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getComputedStyle/zoom-on-display-none_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getPropertyValue-border_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getPropertyValue-clip_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getPropertyValue-column-rule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getPropertyValue-columns_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getPropertyValue-webkit-margin-collapse_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/getPropertyValue-webkit-text-stroke_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/html-attr-case-sensitivity_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/id-or-class-before-stylesheet-strict_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/id-or-class-before-stylesheet_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/image-set-parsing-invalid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/image-set-setting_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/image-set-value-crash-in-fillImageSet_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/implicit-attach-marking_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/important-js-override_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/infinite-floating-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/inherit-initial-shorthand-values_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/inherited-properties-explicit_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/inherited-properties-rare-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/input-search-table-column-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/inputtext-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/insertRule-font-face_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/insertRule-media_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalid-cursor-property-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalid-hex-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalid-import-rule-insertion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalid-not-with-pseudo-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalid-not-with-simple-selector-sequence_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalid-parsercontext-valid-keyword-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalid-predefined-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalid-rule-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/clears-invalidation-whole-tree_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/detach-reattach-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/detach-reattach_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/dynamic-selector-list-pseudo_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/invalidation-set-with-adjacent-combinators_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/no-invalidation-set-local-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/shadow-host-toggle_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/style-update-with-added-stylesheet_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/targeted-attribute-style-invalidation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/targeted-class-any-pseudo_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/targeted-class-host-pseudo_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/targeted-class-id_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/targeted-class-style-invalidation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/targeted-class-type-selectors_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/targeted-id-style-invalidation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/invalidation/toggle-style-inside-shadow-root_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/large-number-round-trip_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/large-value-csstext_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/last-child-innerhtml_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/legacy-opacity-styles_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/link-alternate-stylesheet-1_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/link-alternate-stylesheet-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/link-alternate-stylesheet-3_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/link-alternate-stylesheet-4_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/link-alternate-stylesheet-5_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/link-disabled-attr-parser_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/list-item-text-align_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/many-spaces-before-charset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/margin-start-end_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/max-device-aspect-ratio_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/max-height-and-max-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/max-width-none_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/media-query-recovery_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/media-rule-dyn_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/media-rule-no-whitespace_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/media-rule-screenDepthPerComponent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/min-device-aspect-ratio_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/min-max-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/misplaced-charset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/modify-ua-rules-from-javascript_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/named-colors_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/negative-orphans-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/nested-at-rules_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/nested-first-letter-with-float-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/nested-rule-parent-sheet_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/next-sibling-changed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/nth-child-implied-step_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/nth-child-n_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/nth-child-negative-a-param_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/nth-child-no-mutations_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/nth-child-odd-case-insensitive_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/nth-child-unary-prefix_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/number-parsing-crash-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/number-parsing-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/orphaned_units_crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/outline-currentcolor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/outline-hidden-illegal-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/outline-invert-assertion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/outline-offset-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/overflow-property_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/padding-no-renderer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/padding-start-end_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parse-border-image-repeat-null-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parse-color-int-or-percent-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parse-timing-function-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-at-rule-recovery_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-css-allowed-string-characters_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-css-comment_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-css-escapes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-css-nonascii_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-css-nth-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-css-surrogate-pairs_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-expr-error-recovery_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-font-variant-ligatures_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-not-after-supports_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-object-fit_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-object-position_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-page-rule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-selector-error-recovery_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-text-rendering_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-unexpected-eof_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/parsing-webkit-font-smoothing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pending-images-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/percent-character-as-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/percent-min-width-img-src-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/percent-width-img-src-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/position-absolute-float_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/positioned-in-relative-position-inline-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/positioned-overflow-scroll_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-any_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-default-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-default-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-default-003_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-default-004_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-element-opagedxy-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-empty-display-none_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-empty-dynamic-empty_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-escaped-parenthesis_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-in-range-invalid-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-in-range_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-invalid-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-invalid-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-invalid-novalidate-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-not_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-out-of-range_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-required-optional-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-required-optional-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-required-optional-003_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-required-optional-004_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-required-optional-005_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-required-optional-006_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-required-optional-unapplied_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-target-indirect-sibling-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-target-indirect-sibling-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-valid-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-valid-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-valid-004_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-valid-007_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-valid-dynamic_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudo-valid-unapplied_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/pseudostyle-anonymous-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/readonly-pseudoclass-opera-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/readonly-pseudoclass-opera-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/readonly-pseudoclass-opera-003_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/readonly-pseudoclass-opera-004_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/readonly-pseudoclass-opera-005_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/readwrite-contenteditable-recalc_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/recalc-direct-adjacent-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/recalc-optgroup-inherit_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/recursive-delay-update-scroll_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/relative-position-replaced-in-table-display-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/relative-positioned-block-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/rem-units-body_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/remove-attribute-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/remove-class-name_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/remove-fixed-resizer-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/remove-style-after-insert-import-rule-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/resize-object-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/resize-value-compared_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/rgba-custom-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/scrollbar-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/selector-text-escape_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/shadow-current-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/shadow-dom-scope_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/sheet-collection-link_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/sheet-title_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/short-inline-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/shorthand-priority_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/shorthand-setProperty-important_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/shorthands-four-values_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/sibling-selectors-dynamic_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/sibling-selectors_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/small-caps-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/space-before-charset-external_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/space-before-charset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/sticky/parsing-position-sticky_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/sticky/remove-inline-sticky-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/sticky/remove-sticky-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/sticky/sticky-table-col-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/string-quote-binary_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/style-element-process-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/style-scoped/style-scoped-in-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/style-scoped/style-scoped-nested_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/style-scoped/style-scoped-scoping-nodes-different-order_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/style-scoped/style-scoped-shadow-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/style-scoped/style-scoped-with-dom-operation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/style-scoped/style-scoped-with-important-rule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/style-sharing-grand-parent-invalidate_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/style-sharing-inline-stylesheet_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/style-sharing-type-and-readonly_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/stylesheet-enable-first-alternate-link_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/stylesheet-enable-first-alternate-on-load-link_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/stylesheet-enable-first-alternate-on-load-sheet_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/stylesheet-enable-second-alternate-link_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/stylesheet-parentStyleSheet_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/test-setting-canvas-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/text-align-initial_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/text-align-webkit-match-parent-parse_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/text-align-webkit-match-parent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/text-rendering-priority_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/transform-origin-parsing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/transition_shorthand_parsing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/unicode-bidi-computed-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/url-with-multi-byte-unicode-escape_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/use-incorrect-svg-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/vertical-align-length-copy-bug_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/visibility-collapse-form-buttons_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/visited-link-hang_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/webfont-lighter-weight-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/webkit-color-adjust_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/webkit-empty-transform-preserve3d-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/webkit-keyframes-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/webkit-keyframes-errors_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/webkit-marquee-speed-unit-in-quirksmode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/word-break-user-modify-allowed-values_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/zoom-in-length-round-trip_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css/zoom-property-parsing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last-inherited_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-underline-position_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/getComputedStyle-text-indent-inherited_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/getComputedStyle-text-indent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/52776_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Comment/remove_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Document/CaretRangeFromPoint/basic_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-strict-mode-wtih-checkbox_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-user-select-none_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-zoom-and-scroll_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-with-first-letter-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Document/CaretRangeFromPoint/replace-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Document/replace-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/DocumentFragment/document-fragment-constructor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/client-rect-list-argument_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/dimension-properties-unrendered_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/fixed-position-offset-parent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/getBoundingClientRect-getClientRects-relative-to-viewport_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/getClientRects_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/hostname-host_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/id-in-getelement01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/id-in-insert-hr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/id-in-map_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/id-in-param_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/node-list-identity_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/offsetTop-table-cell_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/remove_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/scrollWidth_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Element/setAttribute-case-insensitivity_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/anchor-ismap-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/get-href-attribute-port_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/remove-href-from-focused-anchor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-host_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hostname_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-pathname_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-port_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-prevents-rebase_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-protocol_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-rebase_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-search_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-whitespace_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLAreaElement/area-islink-focus-null-ptr-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLBaseElement/href-attribute-resolves-with-respect-to-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLBaseElement/multiple-base-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLButtonElement/change-type_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLButtonElement/value/getset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/dialog-autofocus_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/dialog-close-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/dialog-enabled_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/dialog-open_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/dialog-return-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/dialog-scrolled-viewport_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/dialog-show-modal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/inert-does-not-match-disabled-selector_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-unfocusable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-unselectable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/multiple-centered-dialogs_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/non-anchored-dialog-positioning_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/show-modal-focusing-steps_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/submit-dialog-close-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/synthetic-click-inert_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-relative_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-static_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDocument/active-element-gets-unforcusable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDocument/activeElement_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDocument/clone-node_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDocument/set-focus-on-valid-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDocument/title-get_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLDocument/title-set_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-before-text-node_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-child-node_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-text-form-control_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-dir-auto-children_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-dir-auto-remove-add-children_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-dir-auto-text-form-control-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-dir-auto-text-form-control_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-dir-auto_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-dir-value-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-empty-string_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-false-string_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-invalid-string_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-missing-ancestor-false_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-missing-ancestor-true_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-missing-parent-ancestor-missing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-missing-parent-false_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-missing-parent-true_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/attr-true-string_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/innerHTML-selection-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/set-false_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/set-inherit-parent-false_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/set-inherit-parent-true_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/set-inner-outer-optimization_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/set-invalid-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/set-true_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/set-value-caseinsensitive_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/spellcheck_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLElement/translate_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLFontElement/size-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLFormElement/adopt-assertion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLFormElement/associated-elements-after-index-assertion-fail1_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLFormElement/associated-elements-after-index-assertion-fail2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLFormElement/elements-not-in-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLFormElement/htmlformelement-indexed-getter_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLFormElement/move-option-between-documents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLImageElement/image-alt-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLImageElement/image-loading-gc_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLImageElement/image-natural-width-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLImageElement/image-src-absolute-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLImageElement/parse-src_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/checked-pseudo-selector_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/clone-input-checked_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/cloned-input-checked-state_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/duplicate-element-names_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/input-checked-reset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/input-hidden-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/input-image-alt-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/input-size-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/input-text-reset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/size-as-number_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLInputElement/size-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLabelElement/click-label_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLabelElement/focus-label_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLabelElement/form/test1_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLabelElement/label-control_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/cachedresource-types_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test-nonexistent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-beforeload-recursive_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-onerror-stylesheet-with-existent-and-non-existent-import_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-onerror-stylesheet-with-non-existent-import_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-onerror_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-onload-before-page-load_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-onload-stylesheet-with-import_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-onload2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-onload_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/link-sheet-out-of-tree_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/onload-completion-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/prefetch-beforeload_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/prefetch-detached_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/prefetch-onerror_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/prefetch-onload_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/prefetch_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/resolve-url-on-insertion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLLinkElement/subresource_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLMetaElement/meta-attributes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLMeterElement/meter-percent-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLObjectElement/beforeload-set-text-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLObjectElement/children-changed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLObjectElement/form/test1_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLObjectElement/set-type-to-null-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLOptionElement/collection-setter-getter_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLOutputElement/dom-settable-token-list_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-children-removed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-reset-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-validity_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLProgressElement/indeterminate-progress-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLProgressElement/progress-element-indeterminate-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLProgressElement/progress-element-with-child-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLProgressElement/progress-element-with-style-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLProgressElement/set-progress-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/async-false-inside-async-false-load_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/async-inline-script_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/defer-inline-script_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/defer-script-invalid-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/dont-load-unknown-type_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/isURLAttribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/remove-in-beforeload_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/remove-source_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/script-async-attr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/script-for-attribute-unexpected-execution_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/script-load-events_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/script-reexecution_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLScriptElement/script-set-src_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLSelectElement/change-multiple-preserve-selection_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLSelectElement/listbox-select-reset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLSelectElement/named-options_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLSelectElement/remove-element-from-within-focus-handler-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLSelectElement/select-element-item-argument_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLSelectElement/select-selectedOptions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLSelectElement/selected-false_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLSelectElement/selected-index-preserved-when-option-text-changes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLStyleElement/insert-parser-generated_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLStyleElement/programmatically-add-style-with-onerror-handler_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLStyleElement/programmatically-add-style-with-onload-handler_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLStyleElement/style-onerror-with-existent-and-non-existent-import_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLStyleElement/style-onerror_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLStyleElement/style-onload-before-page-load_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLStyleElement/style-onload2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLStyleElement/style-onload_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableElement/cellpadding-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableElement/createCaption_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableElement/early-acid3-65-excerpt_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableElement/early-acid3-66-excerpt_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableElement/exceptions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableElement/insert-row_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableElement/rows_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableElement/tBodies_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableElement/table-with-invalid-border_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableRowElement/cells_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableRowElement/exceptions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableRowElement/insertCell_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTableSectionElement/rows_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/cloneNode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/contentWrappers_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/custom-element-wrapper-gc_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/cycles-in-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/cycles_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/inertContents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/innerHTML-inert_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/innerHTML_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/no-form-association_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/ownerDocumentXHTML_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/ownerDocument_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTemplateElement/xhtml-parsing-and-serialization_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/HTMLTextAreaElement/reset-textarea_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/added-out-of-order_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/callback-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/clear-transient-without-delivery_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/create-during-delivery_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/cross-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/database-callback-delivery_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/delivery-order_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/disconnect-cancel-pending_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/document-fragment-insertion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/mutate-during-delivery_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/mutation-record-constructor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/mutation-record-nullity_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/observe-attributes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/observe-characterdata_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/observe-childList_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/observe-exceptions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/observe-options-attributes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/observe-options-character-data_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/observe-subtree_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/observer-wrapper-dropoff-transient_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/observer-wrapper-dropoff_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/removed-out-of-order_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/takeRecords_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/transient-gc-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/MutationObserver/weak-callback-gc-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Node/DOMNodeRemovedEvent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Node/contains-method_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Node/fragment-mutation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Node/initial-values_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/NodeList/childNodes-reset-cache_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/NodeList/childNodes-reverse-iteration_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/NodeList/invalidate-node-lists-when-parsing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/NodeList/nodelist-moved-to-fragment-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/NodeList/nodelist-reachable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range-insertNode-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/13000_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/31684_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/bug-19527_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/create-contextual-fragment-script-not-ran_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/create-contextual-fragment-script-unmark-already-started_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/create-contextual-fragment_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/deleted-range-endpoints_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/getClientRects-character_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/insertNode-empty-fragment-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/missing-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/mutation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-clone-contents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-clone-empty_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-comparePoint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-constructor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-created-during-remove-children_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-delete-contents-event-fire-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-delete-contents-mutation-event-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-detached-exceptions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-exceptions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-expand_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-extract-contents-event-fire-crash2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-extract-contents-event-fire-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-extract-contents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-extractContents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-insertNode-assertion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-insertNode-separate-endContainer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-insertNode-splittext_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-isPointInRange_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-modifycontents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-on-detached-node_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/range-processing-instructions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/remove-all-children-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/remove-twice-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/select-node-different-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/split-text-in-range_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/surroundContents-1_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/surroundContents-check-boundary-points_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Range/surroundContents-for-detached-node_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Selection/collapseToX-empty-selection_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Selection/getRangeAt_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/bug-17313_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/caseID-almost-strict_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/caseID-strict_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/caseID_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/caseTagX_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/caseTag_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/detached-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/dumpNodeList-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/dumpNodeList-almost-strict_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/dumpNodeList_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/duplicate-id-scope_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/elementRoot_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/id-fastpath-almost-strict_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/id-fastpath-strict_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/id-fastpath_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/not-supported-namespace-in-selector_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/unknown-pseudo_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/SelectorAPI/viewless-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/css-insert-import-rule-to-shadow-stylesheets_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/css-medialist-item_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/detached-parent-rule-without-wrapper_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/detached-shadow-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/detached-style-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/detached-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/detached-stylesheet-without-wrapper_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/discarded-sheet-owner-null_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/empty-shadow-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/removed-media-rule-deleted-parent-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/StyleSheet/removed-stylesheet-rule-deleted-parent-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Text/next-element-sibling_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Text/normalize-crash-in-spell-checker_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Text/previous-element-sibling_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Text/remove_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Text/replaceWholeText_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Text/text-constructor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/TreeWalker/TreeWalker-currentNode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Window/atob-btoa_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Window/dispatchEvent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Window/invalid-protocol_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Window/querySelectorAll-with-pseudo-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Window/replaceable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Window/window-remove-event-listener_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Window/window-resize-contents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Window/window-resize_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Window/window-screen-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/Window/window-scroll-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/XMLHttpRequest-constants_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/XMLSerializer-attribute-entities_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/XMLSerializer-attribute-namespaces_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/XMLSerializer-attribute-ns-prefix_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/XMLSerializer-doctype2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/XMLSerializer-doctype_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/XMLSerializer-double-xmlns_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/XMLSerializer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/allowed-children_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/anchor-origin_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/anchor-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/anchor-toString_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/anchor-without-content_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/attribute-namespaces-get-set_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/background-shorthand-csstext_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/blur-contenteditable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/boolean-attribute-reflection_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/capturing-event-listeners_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/characterdata-api-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/class-attr-change-double-mutation-fire_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/click-method-on-html-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/client-width-height-quirks_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/clone-contents-0-end-offset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/clone-node-default-argument_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/clone-node-form-elements-with-attr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/clone-node-form-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/clone-node-load-event-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/clone-node-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/clone-node-z-index_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/cloneNode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/comment-dom-node_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/comment-not-documentElement_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/computed-style-set-property_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/containerNode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/createDocumentType-ownerDocument_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/createDocumentType2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/createDocumentType_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/createDocument_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/createElement-with-column_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/createElement-with-column_xml_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/createElementNS-empty-namespace_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/createElementNS-namespace-errors_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/createElementNS_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/createElement_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-cached-import-rule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-delete-doc_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-inline-style-declaration-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-inline-style-important_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-innerHTML_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-insert-import-rule-twice_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-insert-import-rule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-mediarule-deleteRule-update_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-mediarule-functions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-mediarule-insertRule-update_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-mediarule-parentRule_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-rule-functions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-selectorText_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-set-property-exception_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-shortHands_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/css-shorthand-common-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/cssTarget-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/constructor-calls-created-synchronously_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/created-callback_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/document-register-basic_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/document-register-namespace_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/document-register-on-create-callback_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/document-register-type-extensions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/element-type_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/element-upgrade_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/html-element-type-extension-assert_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/invalid-type-extension-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/lifecycle-created-createElement-recursion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/type-extension-undo-assert_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/unresolved-pseudoclass_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/custom/upgrade-candidate-remove-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/dataset-xhtml_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/dataset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/delete-contents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/destroy-selected-radio-button-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/document-importNode-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/document-set-title-mutations_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/document-set-title-no-child-on-empty_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/document-set-title-no-reuse_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/document-stylesheets-empty-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/document-width-height-force-layout_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/dom-instanceof_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/dom-method-document-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/dom-parse-serialize-display_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/dom-parse-serialize-xmldecl_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/dom-parse-serialize_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/domparser-parsefromstring-mimetype-support_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/domtimestamp-is-number_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/duplicate-ids-document-order_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/duplicate-ids_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/elementFromPoint-scaled-scrolled_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/empty-hash-and-search_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/focus-contenteditable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/fragment-activation-focuses-target_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/gc-image-element-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/gc-image-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementById-consistency2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementById-consistency3_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementById-consistency4_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementById-consistency5_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementById-consistency_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/003_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/004_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/005_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/006_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/007_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/008_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/009_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/010_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/011_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/012_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/013_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/014_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/015_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getElementsByClassName/dumpNodeList_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getelementbyname-invalidation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/getelementsbyname-invalidation-cache_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/horizontal-scrollbar-in-rtl-doesnt-fire-onscroll_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/horizontal-scrollbar-in-rtl_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/horizontal-scrollbar-when-dir-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/html-collections-named-getter-mandatory-arg_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/htmlcollection-length-after-item_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/icon-size-property_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/icon-url-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/icon-url-list_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/id-attribute-with-namespace-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/image-object_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/implementation-api-args_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/implementation-createHTMLDocument_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/import-document-fragment_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/importNode-confusing-localName_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/importNode-null_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/importNode-prefix_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/importNode-unsupported-node-type_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/importNodeHTML_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/importNodeXML_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/inner-text-first-letter_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/inner-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/inner-width-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/innerHTML-detached-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/innerHTML-escaping-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/innerHTML-nbsp_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/insert-span-into-long-text-bug-28245_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/insertBefore-refChild-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/javascript-backslash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/jsDevicePixelRatio_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/left-overflow-in-ltr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/legend-display-inline_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/length-attribute-mapping_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/location-hash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/multiple-ids_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/mutation-event-remove-inserted-node_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/navigator-userAgent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/navigator-vendorSub_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/navigatorcontentutils/register-protocol-handler_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/no-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/node-childNodes-idempotence_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/node-iterator-reference-node-removed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/node-iterator-with-doctype-root_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/non-styled-element-id-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/noscript-canvas-in-created-html-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/noscript-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/object-plugin-hides-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/offset-parent-positioned-and-inline_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/offset-position-writing-modes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/onerror-img_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/option-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/partial-layout-block_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/partial-layout-non-overlay-scrollbars_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/partial-layout-overlay-scrollbars_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/remove-body-during-body-replacement_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/remove-children-notification-order_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/remove-named-attribute-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/remove-style-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/replace-child-siblings_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/replace-first-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/script-innerHTML_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/serialize-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/set-custom-validity-with-too-few-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/set-innerHTML_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/setAttribute-using-initial-input-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/setAttributeNS-namespace-errors_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/setter-type-enforcement_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/access-document-of-detached-stylesheetlist-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/base-in-shadow-tree_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/content-element-api_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/content-element-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/content-element-includer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/content-element-outside-shadow-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/content-pseudo-element-css-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/content-pseudo-element-dynamic-attribute-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/content-pseudo-element-overridden_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/content-pseudo-element-relative-selector-css-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/content-pseudo-element-with-host-pseudo-class_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/content-reprojection-fallback-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/distribution-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/distribution-for-event-path_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/distribution-update-recalcs-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/elementfrompoint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/elements-in-frameless-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/event-path-not-in-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/event-path_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/form-in-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/get-distributed-nodes-orphan_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/get-element-by-id-in-shadow-mutation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/getComputedStyle-composed-parent-dirty_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/getelementbyid-in-orphan_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/getelementbyid-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/host-context-pseudo-class-css-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/host-pseudo-class-css-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/host-wrapper-reclaimed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/insertion-point-list-menu-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/insertion-point-video-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/link-in-shadow-tree_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/no-renderers-for-light-children_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/offsetWidth-host-style-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/ol-with-distribution-recalc-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/olderShadowRoot_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/pseudoclass-update-checked-option_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-option_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-optgroup_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/reinsert-insertion-point_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/remove-and-insert-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/remove-styles-in-shadow-crash-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/remove-styles-in-shadow-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadow-aware-shadow-root_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadow-content-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadow-disable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadow-element-inactive_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadow-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadow-hierarchy-exception_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadow-removechild-and-blur-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadow-root-append_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadow-root-js-api_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadowdom-dynamic-styling_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadowdom-for-input-spellcheck_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadowdom-for-input-type-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadowdom-for-unknown-with-form_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadowhost-keyframes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadowroot-clonenode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadowroot-host_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/shadowroot-keyframes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/sibling-rules-dynamic-changes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/stale-distribution-after-shadow-removal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/style-insertion-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/style-of-distributed-node_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/style-sharing-sibling-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/style-sharing-styles-in-older-shadow-roots_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/suppress-mutation-events-in-shadow-characterdata_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shadow/title-element-in-shadow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/shared-inline-style-after-node-removal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/stripNullFromTextNodes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/subtree-modified-attributes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/text-api-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/text-control-crash-on-select_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/text-node-attach-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/title-content-set-innerText-get_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/vertical-scrollbar-in-rtl-doesnt-fire-onscroll_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/vertical-scrollbar-when-dir-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/xhtml-fragment-parsing-exceptions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/xhtml-fragment-whitespace_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dom/xmlserializer-serialize-to-string-exception_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/5872671_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/ancestor-to-absolute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/checkbox-selection-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/continuation-detach-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/crash-generated-counter_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/crash-generated-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/crash-generated-quote_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/crash-generated-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/float-remove-above-line-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/float-remove-above-line_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/inline-to-block-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/insertAdjacentElement_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/insertAdjacentHTML-allowed-parents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/insertAdjacentHTML_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/insertAdjacentText_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/jQuery-animation-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/layer-no-longer-paginated_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/position-absolute-to-fixed-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/position-change-layout_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/recursive-layout_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/style-access-late-stylesheet-load_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/dynamic/subtree-common-root_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/encoding/bom-in-content_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/add-event-without-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/change-overflow-on-overflow-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/clipboard-clearData_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/clipboard-dataTransferItemList-remove_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/clipboard-dataTransferItemList_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/create-document-crash-on-attach-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/defaultprevented_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/delayed-style-mutation-event-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/dispatch-event-being-dispatched_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/dispatch-event-no-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/dispatch-synthetic-mouseevent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/div-focus_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/document-elementFromPoint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/domnodeinsertedintodocument-dispatched-post-rendering_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-attributes-after-exception_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-creation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-fire-order_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-fired-after-removal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-listener-html-non-html-confusion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-listener-list-mutation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-listener-moving-documents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-listener-sharing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-on-created-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-on-xhr-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/event-trace_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/fire-scroll-event-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/fire-scroll-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/focus-remove-focuesed-node_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/form-onchange_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/init-event-null-view_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/init-message-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/initkeyboardevent-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/input-focus-no-duplicate-events_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/invalid-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/invalid-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/invalid-003_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/invalid-004_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/invalid-005_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/keyboardevent-location-constants_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/keyboardevent-mousedown-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/label-focus_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/mutation-during-append-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/mutation-during-insert-before_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/mutation-during-replace-child-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/mutation-during-replace-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/nested-event-remove-node-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/no-window-load_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/onerror-bubbling_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/onerror-img-after-gc_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/overflowchanged-event-raf-timing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/page-visibility-null-view_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/programmatic-check-no-change-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/scoped/editing-commands_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/scroll-during-zoom-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/scroll-event-does-not-bubble_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/scroll-event-phase_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/selectstart-on-selectall_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/selectstart-prevent-selectall_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/stop-immediate-propagation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/stopPropagation-checkbox_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/submit-reset-nested-bubble_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/tabindex-removal-from-focused-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/wheelevent-constructor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/window-load-capture_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/events/xhr-onclick-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/eventsource/eventsource-attribute-listeners_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/eventsource/eventsource-constructor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/exclusions/parsing/parsing-wrap-flow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/exclusions/parsing/parsing-wrap-through_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/blob-close-read_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/blob-close-revoke_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/blob-constructor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/blob-parts-slice-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/blob-slice-overflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/blob-slice-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/create-blob-url-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/file-reader-abort-in-last-progress_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/file-reader-done-reading-abort_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/file-reader-fffd_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/file-reader-immediate-abort_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/file-reader-methods-illegal-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/file-reader-readystate_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/file-reader-result-twice_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/not-enough-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/read-blob-as-array-buffer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/revoke-blob-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/url-required-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/workers/inline-worker-via-blob-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/files/xhr-response-blob_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/async-operations_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/directory-entry-to-uri_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-after-reload-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-entry-to-uri_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-from-file-entry_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-metadata-after-write_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-writer-abort-continue_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-writer-abort-depth_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-writer-abort_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-writer-empty-blob_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-writer-events_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-writer-gc-blob_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-writer-truncate-extend_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/file-writer-write-overlapped_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/filesystem-reference_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/filesystem-unserializable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/filesystem-uri-origin_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/input-access-entries_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/op-copy_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/op-get-entry_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/op-get-metadata_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/op-get-parent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/op-move_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/op-read-directory_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/op-remove_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/op-restricted-chars_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/op-restricted-names_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/op-restricted-unicode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/read-directory-many_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/read-directory_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/simple-readonly-file-object_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/simple-readonly_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/simple-required-arguments-getdirectory_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/simple-required-arguments-getfile_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/simple-temporary_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/filesystem/snapshot-file-with-gc_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/box-orient-button_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/box-size-integer-overflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/child-flexing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/crash-anonymous-box_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/crash-button-input-autofocus_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/crash-button-keygen_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/crash-button-relayout_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/crash-flexbox-no-layout-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/flexing-overflow-scroll-item_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/inline-children-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/intrinsic-min-width-applies-with-fixed-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/layoutHorizontalBox-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/line-clamp-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/order-iterator-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/overhanging-floats-not-removed-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/repaint-scrollbar_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/flexbox/vertical-box-form-controls_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/11423_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/4628409_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/8250_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/HTMLOptionElement_selected2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/HTMLOptionElement_selected_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-customError_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-patternMismatch-unsupported_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-patternMismatch_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-rangeOverflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-rangeUnderflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-removed-control_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-stepMismatch_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-tooLong-input_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-tooLong-textarea_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-typeMismatch-email_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-typeMismatch-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-valueMissing-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-valueMissing-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-valueMissing-003_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-valueMissing-004_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-valueMissing-005_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-valueMissing-006_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-valueMissing-008_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/ValidityState-valueMissing-009_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/activate-and-disabled-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/add-remove-form-elements-stress-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/autocomplete_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/autofocus-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/autofocus-focus-only-once_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/autofocus-input-css-style-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/autofocus-opera-004_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/autofocus-opera-005_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/autofocus-opera-007_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/autofocus-opera-008_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/autofocus-readonly-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/button-baseline-and-collapsing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/button-click-DOM_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/button/button-disabled-blur_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/change-form-element-document-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/checkValidity-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/checkValidity-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/checkValidity-003_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/checkValidity-004_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/checkValidity-cancel_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/checkValidity-handler-updates-dom_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/checkbox-click-indeterminate_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/checkbox-default-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/checkbox-onchange_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/clone-input-with-dirty-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/color/color-setrangetext_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/color/input-value-sanitization-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/control-detach-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/cursor-position_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/dangling-form-element-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datalist/datalist-child-validation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datalist/datalist-nonoption-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datalist/datalist_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datalist/input-list_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datalist/slider-appearance-with-ticks-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-change-layout-by-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-onblur-setvalue-onfocusremoved_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/ValidityState-rangeOverflow-date_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/ValidityState-stepMismatch-date_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/ValidityState-typeMismatch-date_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/date-click-on-label_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/date-input-type_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/date-interactive-validation-required_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/date-pseudo-classes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/date-setrangetext_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/input-date-validation-message_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/input-valueasdate-date_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/date/input-valueasnumber-date_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-change-layout-by-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal/ValidityState-rangeOverflow-datetimelocal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal/ValidityState-stepMismatch-datetimelocal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal/ValidityState-typeMismatch-datetimelocal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal/datetimelocal-input-type_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal/datetimelocal-interactive-validation-required_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal/datetimelocal-pseudo-classes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal/datetimelocal-setrangetext_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal/input-valueasdate-datetimelocal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/datetimelocal/input-valueasnumber-datetimelocal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/delete-text-with-invisible-br_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/disabled-attr-checkvalidity_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/double-focus_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/enctype-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/fieldset/fieldset-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/fieldset/fieldset-disabled_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/fieldset/fieldset-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/fieldset/fieldset-name_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/fieldset/fieldset-type_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/fieldset/focus-in-fieldset-disabled_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/fieldset/validation-in-fieldset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/file/file-input-capture_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/file/file-setrangetext_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/focus-style-pending_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/focus_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/form-added-to-table_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/form-associated-element-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/form-attribute-nonexistence-form-id_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/form-attribute-not-in-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/form-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/form-dirname-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/form-input-named-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/form-submission-create-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/formmethod-attribute-button-html_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/formmethod-attribute-input-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/formmethod-attribute-input-html_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/formmethod-attribute-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/formnovalidate-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/hidden-input-enabled_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/hidden/change-type-to-hidden-after-updating-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/hidden/hidden-setrangetext_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/image/image-error-event-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/image/image-error-event-modifies-type-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/image/image-setrangetext_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/image/width-and-height-of-detached-input_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/incremental-dom-property_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/indeterminate-input-types_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-appearance-elementFromPoint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-appearance-maxlength_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-changing-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-file-set-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-hit-test-border_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-implicit-length-limit_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-inputmode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-maxlength-unsupported_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-maxlength_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-minmax_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-multiple_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-pattern_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-select-webkit-user-select-none_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-selection-hidden_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-setvalue-selection_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-stepup-stepdown_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-text-maxlength_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-text-paste-maxlength_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-type-change-focusout_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-type-change3_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-type-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-value-sanitization_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-valueasnumber-unsupported_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-width-height-attributes-without-renderer-loaded-image_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-width-height-attributes-without-renderer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-width-height-attributes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-widths_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/input-zero-height-focus_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/interactive-validation-assertion-by-validate-twice_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/interactive-validation-attach-assertion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/interactive-validation-select-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/large-parts_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/legend-absolute-position-auto-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/legend-display-none_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/listbox-scroll-after-options-removed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/listbox-select-all_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/listbox-selection-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/menulist-disabled-selected-option_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/menulist-no-renderer-onmousedown_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/menulist-selection-reset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/menulist-submit-without-selection_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/method-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/min-content-form-controls_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/misplaced-img-form-registration_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/missing-action_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/multiple-selected-options-innerHTML_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/novalidate-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/onchange-change-type_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/option-change-single-selected_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/option-index_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/option-label-trim-html-spaces_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/option-strip-unicode-spaces_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/option-value-and-label-changed-by-js_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/option-value-and-label_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/option-value-trim-html-spaces_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/output-reset-assertion-failed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/parser-associated-form-removal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/paste-into-textarea_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/paste-multiline-text-input_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/pattern-attribute-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/pattern-attribute-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/pattern-attribute-003_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/percent-height-auto-width-form-controls_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/placeholder-dom-property_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/placeholder-non-textfield_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/plaintext-mode-1_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/radio-checkbox-restore-indeterminate_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/required-attribute-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/required-attribute-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/search-placeholder-value-changed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/search-popup-crasher_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-change-listbox-to-popup-roundtrip_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-change-popup-to-listbox-in-event-handler_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-change-popup-to-listbox-roundtrip_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-clientheight-large-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-clientheight-with-multiple-attr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-display-none-style-resolve_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-generated-content_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-list-box-mouse-focus_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-max-length_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-namedItem_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-out-of-bounds-index_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-remove-option_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-reset-multiple-selections-4-single-selection_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-reset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-set-inner_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-set-length-with-mutation-remove_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-set-length-with-mutation-reorder_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-set-length-with-mutation-reparent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-set-length-with-mutation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-set-length_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/select-width-font-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/selected-index-assert_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/selection-direction_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/selection-start-end-readonly_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/selection-wrongtype_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/setCustomValidity-arguments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/setCustomValidity-existence_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/setCustomValidity_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/setrangetext_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/shadow-tree-exposure_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/slow-click_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/submit-form-attributes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/submit-form-with-dirname-attribute-with-ancestor-dir-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/submit-form-with-dirname-attribute-with-nonhtml-ancestor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/submit-form-with-dirname-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/submit-nil-value-field-assert_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/text-control-select-blurred_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/text-control-selection-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/text-set-value-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-and-mutation-events-appending-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-and-mutation-events_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-checkValidity-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-crlf_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-default-value-leading-newline_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-initial-caret-position_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-maxlength_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-newline_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-no-scroll-on-blur_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-paste-newline_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-placeholder-dom-property_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-placeholder-relayout-assertion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-rows-cols_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-scrollbar-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-selection-preservation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-set-defaultvalue-after-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-setvalue-without-renderer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-submit-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-trailing-newline_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textarea-wrap-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textfield-clone_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/textfield-focus-out_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/update-from-element-during-editing-crash-1_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/update-from-element-during-editing-crash-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/validationMessage_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/validity-property_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/forms/willvalidate_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/adjacent-html-context-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/body-offset-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/clone-range_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/details-add-child-1_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/details-add-child-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/details-add-details-child-1_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/details-add-details-child-2_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/details-click-controls_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/details-mouse-click_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/disable-style-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/draggable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/empty-fragment-id-goto-top_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/eventhandler-attribute-non-callable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/hidden-attr-dom_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/hidden-attr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/imports/import-element-removed-flag_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/imports/import-events_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/input-type-change-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/layout-with-pending-stylesheet_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/main-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/mark-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/object-border_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/range-point-in-range-for-different-documents_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/select-dropdown-consistent-background-color_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/tab-order_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/tabindex-removal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/text-field-input-types_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/unknown-tag_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/html/xhtml-serialize_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline-block/inline-block-vertical-align-t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/boundingBox-with-continuation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/continuation-inlines-inserted-in-reverse-after-block_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/empty-inline-before-collapsed-space_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/fixed-pos-moves-with-abspos-inline-parent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/fixed-pos-moves-with-abspos-parent-relative-ancestor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/fixed-pos-moves-with-abspos-parent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/fixed-pos-with-transform-container-moves-with-abspos-parent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/inline-position-top-align_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/inline-relative-offset-boundingbox_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/inline-with-empty-inline-children_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/out-of-flow-objects-and-whitespace-after-empty-inline_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/parent-inline-element-padding-contributes-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/positioned-element-padding-contributes-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/reattach-inlines-in-anonymous-blocks-with-out-of-flow-siblings_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/inline/skipped-whitespace-client-rect_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/003_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/005_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/additional-inline-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/innerHTML-case_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/innerHTML-custom-tag_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/innerHTML-iframe_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/innerHTML-nbsp_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/innerHTML-special-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/innerHTML-svg-read_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/innerHTML-svg-write_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/innerHTML-template-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/innerHTML-uri-resolution_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/innerHTML-xml_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/innerHTML/javascript-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/layers/negative-scroll-positions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/layers/normal-flow-hit-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/layers/zindex-hit-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/lists/calc-width-with-space_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/lists/item-not-in-list-line-wrapping_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/lists/list-style-position-inside_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/lists/marker-preferred-margins_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/about-blank-hash-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/about-blank-hash-kept_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/hashchange-event-async_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/hashchange-event-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/loadInProgress_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/local-css-allowed-in-strict-mode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/onhashchange-attribute-listeners_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/onload-policy-ignore-for-frame_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/scroll-position-restored-on-back_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/scroll-position-restored-on-reload-at-load-event_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/stateobjects/replacestate-in-onunload_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/loader/stateobjects/replacestate-updates-location_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/masking/parsing-clip-path-iri_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/masking/parsing-clip-path-shape_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/masking/parsing-mask-source-type_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/masking/parsing-mask_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/invalid-lengths_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/matchmedium-query-api_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/media-query-list-syntax_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/media-query-list_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/media-query-serialization_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/mq-append-delete_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/mq-color-index_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/mq-color-index_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/mq-js-media-except_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/mq-js-media-except_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/mq-js-media-except_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/mq-js-update-media_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/media/mq-parsing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/mediastream/RTCIceCandidate_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/mediastream/RTCPeerConnection-AddRemoveStream_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/mediastream/getusermedia_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/balance-short-trailing-empty-block_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/balance-trailing-border_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/balance-trailing-border_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/balance-unbreakable_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/break-after-always-bottom-margin_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/break-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/column-width-zero_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/columns-shorthand-parsing_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/cssom-view_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/fixed-column-percent-logical-height-orthogonal-writing-mode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/flipped-blocks-hit-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/float-truncation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/gap-non-negative_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/hit-test-above-or-below_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/hit-test-end-of-column-with-line-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/hit-test-end-of-column_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/hit-test-float_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/hit-test-gap-between-pages-flipped_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/hit-test-gap-between-pages_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/image-inside-nested-blocks-with-border_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/inherit-column-values_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/initial-column-values_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/inline-getclientrects_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance-images_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance-maxheight_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance-maxheight_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance_t07: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance_t08: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance_t09: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/newmulticol/balance_t10: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/orphans-relayout_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/vertical-lr/break-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/vertical-lr/float-truncation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/vertical-lr/gap-non-negative_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/vertical-lr/image-inside-nested-blocks-with-border_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/vertical-rl/break-properties_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/vertical-rl/float-truncation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/vertical-rl/gap-non-negative_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/vertical-rl/image-inside-nested-blocks-with-border_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/widows-and-orphans_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/widows_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/widows_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/multicol/zeroColumnCount_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/overflow/child-100percent-height-inside-fixed-container-with-overflow-auto_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/overflow/height-during-simplified-layout_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/overflow/overflow-rtl-vertical-origin_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/overflow/replaced-child-100percent-height-inside-fixed-container-with-overflow-auto_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/overflow/scroll-vertical-not-horizontal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/overflow/scrollbar-restored_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/block-nesting-cap_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/foster-parent-adopted_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/foster-parent-adopted_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/foster-parent_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/fragment-parser-doctype_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/href-whitespace_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/image-tag-parses-to-HTMLImageElement_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/innerhtml-with-prefixed-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/parse-wbr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/pop-all-after-after-body_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/pre-first-line-break_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/residual-style-close-across-n-blocks_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/stray-end-tags-with-attributes-001_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/stray-end-tags-with-attributes-002-alt_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/stray-end-tags-with-attributes-002_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/stray-param_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/parser/strict-img-in-map_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/available-height-for-content_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/computed-image-width-with-percent-height-and-fixed-ancestor-vertical-lr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/computed-image-width-with-percent-height-and-fixed-ancestor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/computed-image-width-with-percent-height-inside-table-cell-and-fixed-ancestor-vertical-lr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/computed-image-width-with-percent-height-inside-table-cell-and-fixed-ancestor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/container-width-zero_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-anonymous-table-cell_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-table-cell-ignore-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/preferred-widths_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/table-percent-height-text-controls_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/table-percent-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/table-percent-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/replaced/table-replaced-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/ruby/after-doesnt-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/ruby/before-block-doesnt-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/ruby/modify-positioned-ruby-text-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/ruby/parse-rp_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/ruby/ruby-line-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/scrolling/scroll-element-into-view_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/scrolling/scroll-max-value_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/selectors/querySelector-in-range-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/selectors/querySelector-leftmost-selector-matches-ancestor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/selectors/querySelector-leftmost-selector-matches-rootNode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/selectors/querySelector-scope_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/selectors/specificity-overflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/selectors/style-sharing-adjacent-selector_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/selectors/style-sharing-last-child_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/parsing/parsing-shape-image-threshold_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/parsing/parsing-shape-lengths_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/parsing/parsing-shape-margin_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/parsing/parsing-shape-outside-none_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/parsing/parsing-shape-outside_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/parsing/parsing-shape-property-aliases_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-diamond-margin-polygon_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-left_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-right_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-left_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-right_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/speechsynthesis/speech-synthesis-cancel_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/speechsynthesis/speech-synthesis-pause-resume_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/speechsynthesis/speech-synthesis-speak_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/speechsynthesis/speech-synthesis-utterance-uses-voice_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/speechsynthesis/speech-synthesis-voices_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/storage/disallowed-storage_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/storage/storage-disallowed-in-data-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/auto-table-layout-should-avoid-text-wrapping_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/block-preferred-widths-with-sub-pixel-floats_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/boundingclientrect-subpixel-margin_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/client-and-offset-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/computedstylemargin_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/cssom-subpixel-precision_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/float-containing-block-with-margin_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/float-list-inside_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/float-percentage-widths_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/float-with-margin-in-container_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/float-with-right-margin-zoom_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/inline-block-with-padding_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/layout-boxes-with-zoom_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/replaced-element-baseline_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/shadows-computed-style_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/size-of-span-with-different-positions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/table-cells-have-stable-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/table-cells-with-padding-do-not-wrap_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/table-rows-have-stable-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/tiled-canvas-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/sub-pixel/vertical-align-middle-overflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/svg/getbbox_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/svg/tabindex-focus_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/svg/whitespace-angle_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/svg/whitespace-integer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/svg/whitespace-length-invalid_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/svg/whitespace-length_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/svg/whitespace-number_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/absolute-table-percent-lengths_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/anonymous-table-section-removed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/auto-table-layout-colgroup-removal-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/before-child-non-table-section-add-table-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/border-changes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/caption-orthogonal-writing-mode-sizing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/col-width-span-expand_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/columngroup-inside-columngroup_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/css-table-max-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/css-table-max-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/css-table-width-with-border-padding_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/css-table-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/fixed-table-layout-toggle-colwidth_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/fixed-table-layout-width-change_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/fixed-table-with-percent-width-inside-extra-large-div_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/form-with-non-table-display-inside-table-elements_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/hittest-tablecell-bottom-edge_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/hittest-tablecell-right-edge_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/hittest-tablecell-with-borders-bottom-edge_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/hittest-tablecell-with-borders-right-edge_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/html-table-width-max-width-constrained_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/incorrect-colgroup-span-values_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/large-shrink-wrapped-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/margins-flipped-text-direction_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/margins-perpendicular-containing-block_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/min-max-width-preferred-size_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/min-width-css-block-table_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/min-width-css-inline-table_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/min-width-html-block-table_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/min-width-html-inline-table_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/nested-tables-with-div-offset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/padding-height-and-override-height_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/prepend-in-anonymous-table_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/resize-table-binding-cell_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/resize-table-cell_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/resize-table-row_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/rowindex-comment-nodes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/switch-table-layout-dynamic-cells_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/switch-table-layout-multiple-section_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/switch-table-layout_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows-except-overlapped_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-cell-offset-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-colgroup-present-after-table-row_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-rowspan-cell-with-empty-cell_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-sections-border-spacing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-size-integer-overflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-width-exceeding-max-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-with-borderattr-null_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-with-borderattr-set-to-null_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/table-with-content-width-exceeding-max-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/table/td-bordercolor-attribute_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text-autosizing/display-type-change-lineHeight_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text-autosizing/inline-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text-autosizing/table-inline-width_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text-autosizing/text-removal_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text-autosizing/vertical-writing-mode_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/container-align-with-inlines_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/decomposed-after-stacked-diacritics_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/find-backwards_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/find-case-folding_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/find-hidden-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/find-kana_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/find-quotes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/find-russian_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/find-soft-hyphen_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/find-spaces_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/font-fallback-synthetic-italics_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/font-ligature-letter-spacing_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/font-ligatures-linebreak-word_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/font-ligatures-linebreak_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/font-linux-normalize_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/font-size-zero_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/glyph-reordering_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/international/cjk-segmentation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/international/combining-marks-position_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/international/complex-text-rectangle_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/international/iso-8859-8_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/international/listbox-width-rtl_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/international/rtl-text-wrapping_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/international/thai-offsetForPosition-inside-character_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/ipa-tone-letters_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/justification-padding-mid-word_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/line-break-after-empty-inline-hebrew_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/line-break-after-inline-latin1_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/line-break-after-question-mark_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/line-breaks-after-closing-punctuations_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/line-breaks-after-hyphen-before-number_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/line-breaks-after-ideographic-comma-or-full-stop_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/line-breaks-after-ideographic-comma-or-full-stop_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/multiglyph-characters_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/offsetForPosition-cluster-at-zero_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/pre-wrap-trailing-tab_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/regional-indicator-symobls_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/remove-zero-length-run_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/selection-exceptions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/soft-hyphen-5_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/split-text-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/sub-pixel/text-scaling-ltr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/sub-pixel/text-scaling-pixel_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/sub-pixel/text-scaling-rtl_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/sub-pixel/text-scaling-vertical_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/sub-pixel/text-scaling-webfont_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/text-between-two-brs-in-nowrap-overflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/text-combine-first-line-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/text-combine-shrink-to-fit_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/text-fragment-first-letter-update-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/whitespace/nowrap-line-break-after-white-space_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/window-find_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/zero-width-characters-complex-script_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/text/zero-width-characters_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/tokenizer/doctype-search-reset_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/tokenizer/entities_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/tokenizer/entities_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/tokenizer/entities_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/transforms/bounding-rect-zoom_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/transforms/hit-test-large-scale_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/transforms/scrollIntoView-transformed_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/transforms/topmost-becomes-bottomost-for-scrolling_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/transforms/transform-hit-test-flipped_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/transforms/transform-inside-overflow-scroll_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/anchor_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/file-http-base_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/file_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/host-lowercase-per-scheme_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/host_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/idna2003_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/idna2008_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/invalid-urls-utf8_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/ipv4_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/ipv6_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/mailto_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/path-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/path_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/port_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/query_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/relative-unix_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/relative-win_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/relative_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/safari-extension_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/scheme_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/segments-from-data-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/segments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/standard-url_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/trivial-segments_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/url/trivial_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/auto-margins-across-boundaries_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/auto-sizing-orthogonal-flows_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/block-formatting-context_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/broken-ideographic-font_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/display-mutation_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/flipped-blocks-hit-test-overflow-scroll_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/flipped-blocks-hit-test-overflow_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/flipped-blocks-text-map-local-to-container_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/percentage-margins-absolute-replaced_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/percentage-padding_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/positionForPoint_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/relative-positioning-percentages_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/table-hit-test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/vertical-font-vmtx-units-per-em_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/writing-mode/vertical-inline-block-hittest_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/null-document-xmlhttprequest-open_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-bad-mimetype_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-get_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-html-response-encoding_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-html-document-responsetype-quirks_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-html-no-responsetype_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-invalid-xml_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-xml-document-responsetype_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-xml-text-responsetype_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-abort_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-document_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-set-at-headers-received_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-text_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xmlhttprequest/xmlhttprequest-withcredentials-before-open_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Borrowed/cz_20030217_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Borrowed/kd_20010423_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Borrowed/namespace-nodes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Borrowed/od_20000608_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Borrowed/rs_20010831_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Borrowed/sr_20021217_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_boolean_expr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_literal_expr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_location_path_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_node_test_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_node_test_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_nodeset_expr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_numeric_expr_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_parser_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_predicate_list_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/4XPath/Core/test_step_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/ambiguous-operators_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/attr-namespace_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/attr-namespace_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/attribute-node-predicate_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/detached-subtree-invalidate-iterator_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/evaluator-exceptions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/implicit-node-args_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/invalid-resolver_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/nan-to-boolean_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/node-name-case-sensitivity_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/node-name-case-sensitivity_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/position_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/py-dom-xpath/abbreviations_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/py-dom-xpath/axes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/py-dom-xpath/data_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/py-dom-xpath/expressions_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/py-dom-xpath/paths_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/reverse-axes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/substring-after_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/substring-nan-position_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/substring-non-positive-postion_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/xpath-detached-nodes_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xpath/xpath-template-element_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xsl/nbsp-in-stylesheet_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xsl/transformToFragment-XML-declaration_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xsl/xslt-bad-import-uri_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xsl/xslt-fragment-in-empty-doc_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LayoutTests/fast/xsl/xslt-transform-to-fragment-crash_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/async/Future/Future.delayed_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/async/Future/Future.delayed_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/async/Zone/ROOT_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/async/Zone/parent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/collection/DoubleLinkedQueueEntry/hashCode_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/AsciiDecoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/AsciiDecoder/startChunkedConversion_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/AsciiDecoder/startChunkedConversion_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Decoder/Base64Decoder_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Decoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Decoder/convert_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Decoder/fuse_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Decoder/startChunkedConversion_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Encoder/Base64Encoder.urlSafe_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Encoder/Base64Encoder_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Encoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Encoder/startChunkedConversion_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/ByteConversionSink/ByteConversionSink.from_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/ByteConversionSink/ByteConversionSink.withCallback_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/ByteConversionSink/ByteConversionSink_class_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/ChunkedConversionSink/ChunkedConversionSink.withCallback_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/HtmlEscape_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/HtmlEscape_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/HtmlEscape_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/HtmlEscape_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/convert_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/fuse_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/mode_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/JsonUtf8Encoder_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/JsonUtf8Encoder_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/JsonUtf8Encoder_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/convert_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/convert_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/convert_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/startChunkedConversion_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Latin1Decoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Latin1Decoder/startChunkedConversion_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Latin1Decoder/startChunkedConversion_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/StringConversionSink.fromStringSink_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/StringConversionSink.from_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/StringConversionSink.withCallback_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/addSlice_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/addSlice_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/add_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asStringSink_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asStringSink_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asUtf8Sink_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asUtf8Sink_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asUtf8Sink_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asUtf8Sink_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/close_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Codec/decode_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Codec/decode_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/convert_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/convert_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/fuse_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/startChunkedConversion_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/startChunkedConversion_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Encoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/DateTime/month_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/DateTime/weekday_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/HOURS_PER_DAY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MICROSECONDS_PER_DAY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MICROSECONDS_PER_HOUR_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MICROSECONDS_PER_MILLISECOND_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MICROSECONDS_PER_MINUTE_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MICROSECONDS_PER_SECOND_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MILLISECONDS_PER_DAY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MILLISECONDS_PER_HOUR_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MILLISECONDS_PER_MINUTE_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MILLISECONDS_PER_SECOND_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MINUTES_PER_DAY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MINUTES_PER_HOUR_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/SECONDS_PER_DAY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/SECONDS_PER_HOUR_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/SECONDS_PER_MINUTE_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/ZERO_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/isNegative_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/static_properties_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromBytes_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromBytes_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromBytes_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromBytes_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromString_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri_A06_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri_A06_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/decodeComponent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/decodeComponent_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/decodeFull_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/decodeQueryComponent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/encodeComponent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/encodeFull_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/encodeQueryComponent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/encodeQueryComponent_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromBytes_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromBytes_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromBytes_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromBytes_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromString_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/toString_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/INFINITY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/INFINITY_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/INFINITY_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/INFINITY_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NAN_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NAN_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NAN_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NAN_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NEGATIVE_INFINITY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NEGATIVE_INFINITY_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NEGATIVE_INFINITY_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NEGATIVE_INFINITY_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/ceilToDouble_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/ceil_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/ceil_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/clamp_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/compareTo_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/compareTo_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/floorToDouble_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/floor_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/floor_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/isInfinite_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_GE_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_GE_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_GT_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_GT_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_LE_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_LE_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_LT_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_LT_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_addition_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_addition_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_addition_A01_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_addition_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A01_t09: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_multiplication_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_multiplication_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_multiplication_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_multiplication_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_multiplication_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_remainder_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_remainder_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_subtraction_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_subtraction_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_subtraction_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_subtraction_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_subtraction_A01_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_truncating_division_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_truncating_division_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_truncating_division_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_truncating_division_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_truncating_division_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_unary_minus_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_unary_minus_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/parse_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/remainder_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/remainder_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/remainder_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/roundToDouble_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/roundToDouble_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/round_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/round_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toInt_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toInt_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsExponential_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsExponential_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsFixed_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsFixed_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsPrecision_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsPrecision_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/truncateToDouble_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/truncateToDouble_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/truncate_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/truncate_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/clamp_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/compareTo_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_GE_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_GT_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_LE_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_LT_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_addition_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_division_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_division_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_remainder_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_subtraction_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/remainder_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/addCredentials_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/addProxyCredentials_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticateProxy_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticateProxy_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticateProxy_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticate_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticate_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticate_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A04_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A04_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/close_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/deleteUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/deleteUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/delete_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/delete_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A02_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A02_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/getUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/getUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/get_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/get_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/headUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/headUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/head_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/head_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/idleTimeout_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/openUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/openUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/openUrl_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/openUrl_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/openUrl_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/open_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/open_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/open_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/open_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/open_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/patchUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/patchUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/patch_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/patch_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/postUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/postUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/post_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/post_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/putUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/putUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/put_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/put_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/userAgent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/userAgent_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientBasicCredentials/HttpClientBasicCredentials_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientDigestCredentials/HttpClientDigestCredentials_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/addError_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/addStream_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/addStream_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/addStream_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/bufferOutput_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/bufferOutput_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/close_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/close_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/connectionInfo_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/contentLength_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/contentLength_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/cookies_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/done_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/encoding_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/encoding_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/encoding_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/flush_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/flush_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/flush_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/followRedirects_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/followRedirects_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/followRedirects_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/followRedirects_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/followRedirects_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/headers_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/headers_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/headers_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/headers_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/maxRedirects_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/maxRedirects_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/maxRedirects_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/maxRedirects_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/method_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/persistentConnection_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/uri_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/certificate_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/connectionInfo_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/detachSocket_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/isRedirect_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/persistentConnection_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/persistentConnection_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/persistentConnection_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/persistentConnection_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/persistentConnection_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/reasonPhrase_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/reasonPhrase_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/reasonPhrase_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/redirects_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/redirects_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/statusCode_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/statusCode_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/statusCode_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/HttpServer.listenOn_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/autoCompress_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/autoCompress_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/autoCompress_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/close_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/close_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/close_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/close_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/close_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/connectionsInfo_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/IOSink/IOSink_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/IOSink/add_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/IOSink/encoding_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/IOSink/write_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/IOSink/write_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/ProcessSignal/watch_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/RandomAccessFile/writeStringSync_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/RandomAccessFile/writeStringSync_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/RandomAccessFile/writeString_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/RandomAccessFile/writeString_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdin/readLineSync_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdin/readLineSync_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdout/add_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdout/encoding_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdout/writeAll_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdout/write_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addErrorListener_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addErrorListener_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addErrorListener_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addErrorListener_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/errors_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/errors_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/kill_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/kill_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/kill_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/kill_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/kill_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A02_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A02_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t07: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t08: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t09: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t10: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeErrorListener_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeErrorListener_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeErrorListener_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeErrorListener_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeOnExitListener_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeOnExitListener_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/setErrorsFatal_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/setErrorsFatal_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/setErrorsFatal_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/setErrorsFatal_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A04_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A04_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A05_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A05_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A05_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A05_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t07: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A04_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A04_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A04_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A04_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t07: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/terminateCapability_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/terminateCapability_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/terminateCapability_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/RawReceivePort/handler_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/SendPort/send_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/SendPort/send_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/SendPort/send_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/MutableRectangle_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/MutableRectangle_A03_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/MutableRectangle_A03_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/height_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/height_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/height_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/operator_equality_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/operator_equality_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/operator_equality_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/operator_equality_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/operator_equality_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/width_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/width_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/width_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/Point_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/magnitude_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/operator_equality_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/operator_equality_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/operator_equality_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/x_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/y_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/Rectangle_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/Rectangle_A03_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/Rectangle_A03_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/operator_equality_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/operator_equality_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/operator_equality_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/operator_equality_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/acos_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/acos_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/asin_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/asin_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan2_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan2_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan2_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan2_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan2_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/cos_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/exp_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/exp_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/log_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/max_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/max_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/min_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/min_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A07_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A08_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A09_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A10_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A11_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A11_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A12_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A12_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A13_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A14_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A15_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A16_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A16_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A17_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/sin_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/sqrt_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/sqrt_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/sqrt_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/tan_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32x4List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32x4List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32x4List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64x2List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64x2List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64x2List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt16List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt16List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt16List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32x4List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32x4List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32x4List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt64List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt64List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt64List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint16List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint16List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint16List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint32List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint32List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint32List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint64List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint64List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint64List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/ByteData.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getFloat32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getFloat64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getInt16_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getInt32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getInt64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getInt8_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getUint16_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getUint32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getUint64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getUint8_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setFloat32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setFloat64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setInt16_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setInt32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setInt64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setInt8_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setUint16_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setUint32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setUint64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setUint8_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/Float32List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/Float32List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/Float32List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/Float32x4List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/Float32x4List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/elementSizeInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/Float64List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/Float64List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/Float64List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A05_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A05_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/elementSizeInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/offsetInBytes_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/setAll_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/Int16List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/Int16List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/Int16List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/Int32List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/Int32List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/Int32List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4/Int32x4.fromFloat32x4Bits_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/Int32x4List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/Int32x4List.view_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/Int32x4List.view_A05_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/Int32x4List.view_A05_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/Int32x4List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/elementSizeInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/setAll_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/Int64List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/Int64List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/Int64List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int8List/Int8List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int8List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/Uint16List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/Uint16List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/Uint16List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/Uint32List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/Uint32List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/Uint32List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/Uint64List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/Uint64List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/Uint64List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint8ClampedList/Uint8ClampedList.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint8ClampedList/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint8List/Uint8List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint8List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/equals_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/identical_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/setEquals_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+WebPlatformTest/html/dom/elements/global-attributes/classlist-nonstring_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
diff --git a/tests/co19_2/co19_2-kernel.status b/tests/co19_2/co19_2-kernel.status
index ac635f5..bb1a5bd 100644
--- a/tests/co19_2/co19_2-kernel.status
+++ b/tests/co19_2/co19_2-kernel.status
@@ -125,6 +125,10 @@
 Language/Expressions/Method_Invocation/Super_Invocation/getter_lookup_failed_t02: CompileTimeError
 Language/Expressions/Method_Invocation/Super_Invocation/invocation_t02: MissingCompileTimeError
 Language/Expressions/Multiplicative_Expressions/syntax_t01: CompileTimeError
+Language/Expressions/Numbers/static_type_of_double_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Language/Expressions/Numbers/syntax_t09: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Language/Expressions/Object_Identity/constant_objects_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Language/Expressions/Object_Identity/double_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
 Language/Expressions/Postfix_Expressions/syntax_t01: CompileTimeError
 Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/instance_of_type_getter_t01: CompileTimeError
 Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/instance_of_type_getter_t03: CompileTimeError
@@ -138,6 +142,7 @@
 Language/Expressions/Strings/String_Interpolation/double_quote_t02: CompileTimeError
 Language/Expressions/Strings/String_Interpolation/single_quote_t02: CompileTimeError
 Language/Expressions/This/placement_t04: MissingCompileTimeError
+Language/Expressions/Type_Cast/syntax_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
 Language/Expressions/Unary_Expressions/syntax_t10: CompileTimeError
 Language/Expressions/Unary_Expressions/syntax_t27: CompileTimeError
 Language/Functions/Formal_Parameters/Optional_Formals/default_value_t01: MissingCompileTimeError
@@ -197,7 +202,13 @@
 Language/Types/Static_Types/malformed_type_t01/04: MissingCompileTimeError
 Language/Types/Static_Types/malformed_type_t01/05: MissingCompileTimeError
 Language/Types/Static_Types/malformed_type_t01/06: MissingCompileTimeError
+Language/Types/Type_Void/returning_t03: MissingCompileTimeError
+Language/Types/Type_Void/returning_t04: MissingCompileTimeError
+Language/Types/Type_Void/returning_t05: MissingCompileTimeError
 Language/Types/Type_Void/syntax_t08: MissingCompileTimeError
+Language/Types/Type_Void/using_t01: MissingCompileTimeError
+Language/Variables/constant_initialization_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Language/Variables/constant_variable_t09: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
 Language/Variables/final_or_static_initialization_t02: MissingCompileTimeError
 Language/Variables/final_or_static_initialization_t03: MissingCompileTimeError
 LanguageFeatures/Instantiate-to-bound/class/custom_extends_neg_l1_t01: MissingCompileTimeError
@@ -221,12 +232,689 @@
 LanguageFeatures/Instantiate-to-bound/typedef/typedef_ret_extends_neg_l1_t04: MissingCompileTimeError
 LanguageFeatures/Instantiate-to-bound/typedef/typedef_ret_extends_neg_l1_t05: MissingCompileTimeError
 LanguageFeatures/Instantiate-to-bound/typedef/typedef_ret_extends_neg_l2_t02: MissingCompileTimeError
+LibTest/async/Future/Future.delayed_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/async/Future/Future.delayed_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/async/Zone/ROOT_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/async/Zone/parent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/collection/DoubleLinkedQueueEntry/hashCode_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
 LibTest/collection/Maps/forEach_A01_t01: CompileTimeError
 LibTest/collection/Maps/forEach_A01_t03: CompileTimeError
 LibTest/collection/Maps/forEach_A01_t04: CompileTimeError
 LibTest/collection/Maps/forEach_A01_t05: CompileTimeError
 LibTest/collection/Maps/forEach_A01_t06: CompileTimeError
 LibTest/collection/Maps/forEach_A02_t01: CompileTimeError
+LibTest/convert/AsciiDecoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/AsciiDecoder/startChunkedConversion_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/AsciiDecoder/startChunkedConversion_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Decoder/Base64Decoder_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Decoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Decoder/convert_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Decoder/fuse_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Decoder/startChunkedConversion_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Encoder/Base64Encoder.urlSafe_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Encoder/Base64Encoder_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Encoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Base64Encoder/startChunkedConversion_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/ByteConversionSink/ByteConversionSink.from_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/ByteConversionSink/ByteConversionSink.withCallback_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/ByteConversionSink/ByteConversionSink_class_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/ChunkedConversionSink/ChunkedConversionSink.withCallback_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/HtmlEscape_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/HtmlEscape_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/HtmlEscape_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/HtmlEscape_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/convert_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/fuse_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/HtmlEscape/mode_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/JsonUtf8Encoder_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/JsonUtf8Encoder_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/JsonUtf8Encoder_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/convert_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/convert_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/convert_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/JsonUtf8Encoder/startChunkedConversion_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Latin1Decoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Latin1Decoder/startChunkedConversion_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Latin1Decoder/startChunkedConversion_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/StringConversionSink.fromStringSink_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/StringConversionSink.from_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/StringConversionSink.withCallback_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/addSlice_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/addSlice_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/add_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asStringSink_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asStringSink_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asUtf8Sink_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asUtf8Sink_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asUtf8Sink_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/asUtf8Sink_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/StringConversionSink/close_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Codec/decode_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Codec/decode_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/convert_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/convert_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/fuse_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/startChunkedConversion_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Decoder/startChunkedConversion_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/convert/Utf8Encoder/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/DateTime/month_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/DateTime/weekday_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/HOURS_PER_DAY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MICROSECONDS_PER_DAY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MICROSECONDS_PER_HOUR_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MICROSECONDS_PER_MILLISECOND_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MICROSECONDS_PER_MINUTE_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MICROSECONDS_PER_SECOND_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MILLISECONDS_PER_DAY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MILLISECONDS_PER_HOUR_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MILLISECONDS_PER_MINUTE_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MILLISECONDS_PER_SECOND_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MINUTES_PER_DAY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/MINUTES_PER_HOUR_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/SECONDS_PER_DAY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/SECONDS_PER_HOUR_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/SECONDS_PER_MINUTE_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/ZERO_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/isNegative_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Duration/static_properties_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromBytes_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromBytes_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromBytes_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromBytes_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri.dataFromString_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri_A06_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/Uri_A06_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/decodeComponent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/decodeComponent_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/decodeFull_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/decodeQueryComponent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/encodeComponent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/encodeFull_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/encodeQueryComponent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/Uri/encodeQueryComponent_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromBytes_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromBytes_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromBytes_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromBytes_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/UriData.fromString_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/UriData/toString_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/INFINITY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/INFINITY_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/INFINITY_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/INFINITY_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NAN_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NAN_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NAN_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NAN_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NEGATIVE_INFINITY_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NEGATIVE_INFINITY_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NEGATIVE_INFINITY_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/NEGATIVE_INFINITY_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/ceilToDouble_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/ceil_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/ceil_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/clamp_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/compareTo_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/compareTo_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/floorToDouble_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/floor_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/floor_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/isInfinite_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_GE_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_GE_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_GT_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_GT_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_LE_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_LE_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_LT_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_LT_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_addition_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_addition_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_addition_A01_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_addition_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A01_t09: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_division_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_multiplication_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_multiplication_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_multiplication_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_multiplication_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_multiplication_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_remainder_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_remainder_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_subtraction_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_subtraction_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_subtraction_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_subtraction_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_subtraction_A01_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_truncating_division_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_truncating_division_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_truncating_division_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_truncating_division_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_truncating_division_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_unary_minus_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/operator_unary_minus_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/parse_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/remainder_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/remainder_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/remainder_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/roundToDouble_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/roundToDouble_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/round_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/round_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toInt_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toInt_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsExponential_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsExponential_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsFixed_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsFixed_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsPrecision_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/toStringAsPrecision_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/truncateToDouble_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/truncateToDouble_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/truncate_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/double/truncate_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/clamp_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/compareTo_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_GE_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_GT_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_LE_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_LT_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_addition_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_division_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_division_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_remainder_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/operator_subtraction_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/core/int/remainder_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/addCredentials_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/addProxyCredentials_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticateProxy_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticateProxy_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticateProxy_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticate_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticate_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/authenticate_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A04_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/autoUncompress_A04_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/close_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/deleteUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/deleteUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/delete_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/delete_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A02_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A02_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxyFromEnvironment_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/findProxy_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/getUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/getUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/get_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/get_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/headUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/headUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/head_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/head_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/idleTimeout_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/openUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/openUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/openUrl_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/openUrl_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/openUrl_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/open_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/open_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/open_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/open_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/open_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/patchUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/patchUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/patch_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/patch_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/postUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/postUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/post_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/post_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/putUrl_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/putUrl_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/put_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/put_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/userAgent_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClient/userAgent_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientBasicCredentials/HttpClientBasicCredentials_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientDigestCredentials/HttpClientDigestCredentials_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/addError_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/addStream_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/addStream_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/addStream_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/add_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/bufferOutput_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/bufferOutput_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/close_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/close_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/connectionInfo_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/contentLength_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/contentLength_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/cookies_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/done_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/encoding_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/encoding_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/encoding_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/flush_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/flush_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/flush_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/followRedirects_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/followRedirects_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/followRedirects_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/followRedirects_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/followRedirects_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/headers_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/headers_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/headers_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/headers_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/maxRedirects_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/maxRedirects_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/maxRedirects_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/maxRedirects_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/method_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/persistentConnection_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientRequest/uri_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/certificate_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/connectionInfo_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/contentLength_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/detachSocket_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/isRedirect_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/persistentConnection_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/persistentConnection_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/persistentConnection_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/persistentConnection_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/persistentConnection_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/reasonPhrase_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/reasonPhrase_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/reasonPhrase_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/redirects_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/redirects_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/statusCode_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/statusCode_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpClientResponse/statusCode_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/HttpServer.listenOn_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/autoCompress_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/autoCompress_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/autoCompress_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/bind_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/close_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/close_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/close_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/close_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/close_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/HttpServer/connectionsInfo_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/IOSink/IOSink_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/IOSink/add_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/IOSink/encoding_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/IOSink/write_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/IOSink/write_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/ProcessSignal/watch_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/RandomAccessFile/writeStringSync_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/RandomAccessFile/writeStringSync_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/RandomAccessFile/writeString_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/RandomAccessFile/writeString_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdin/readLineSync_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdin/readLineSync_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdout/add_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdout/encoding_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdout/writeAll_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/io/Stdout/write_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addErrorListener_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addErrorListener_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addErrorListener_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addErrorListener_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/addOnExitListener_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/errors_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/errors_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/kill_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/kill_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/kill_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/kill_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/kill_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A02_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pauseCapability_A02_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t07: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t08: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t09: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A01_t10: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/pause_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/ping_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeErrorListener_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeErrorListener_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeErrorListener_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeErrorListener_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeOnExitListener_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/removeOnExitListener_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/resume_A03_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/setErrorsFatal_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/setErrorsFatal_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/setErrorsFatal_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/setErrorsFatal_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A04_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A04_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A05_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A05_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A05_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A05_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawnUri_A07_t07: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A04_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A04_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A04_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A04_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t05: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t06: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/spawn_A06_t07: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/terminateCapability_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/terminateCapability_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/Isolate/terminateCapability_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/RawReceivePort/handler_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/SendPort/send_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/SendPort/send_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/isolate/SendPort/send_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/MutableRectangle_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/MutableRectangle_A03_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/MutableRectangle_A03_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/height_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/height_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/height_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/operator_equality_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/operator_equality_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/operator_equality_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/operator_equality_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/operator_equality_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/width_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/width_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/MutableRectangle/width_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/Point_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/magnitude_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/operator_equality_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/operator_equality_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/operator_equality_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/x_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Point/y_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/Rectangle_A03_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/Rectangle_A03_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/Rectangle_A03_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/operator_equality_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/operator_equality_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/operator_equality_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/Rectangle/operator_equality_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/acos_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/acos_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/asin_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/asin_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan2_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan2_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan2_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan2_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan2_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/atan_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/cos_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/exp_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/exp_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/log_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/max_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/max_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/min_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/min_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A07_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A08_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A09_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A10_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A11_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A11_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A12_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A12_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A13_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A14_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A15_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A16_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A16_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/pow_A17_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/sin_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/sqrt_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/sqrt_A02_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/sqrt_A02_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/math/tan_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32x4List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32x4List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat32x4List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64x2List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64x2List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asFloat64x2List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt16List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt16List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt16List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32x4List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32x4List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt32x4List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt64List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt64List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asInt64List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint16List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint16List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint16List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint32List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint32List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint32List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint64List_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint64List_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteBuffer/asUint64List_A03_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/ByteData.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getFloat32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getFloat64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getInt16_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getInt32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getInt64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getInt8_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getUint16_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getUint32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getUint64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/getUint8_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setFloat32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setFloat64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setInt16_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setInt32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setInt64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setInt8_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setUint16_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setUint32_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setUint64_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/ByteData/setUint8_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/Float32List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/Float32List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/Float32List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/Float32x4List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/Float32x4List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/elementSizeInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float32x4List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/Float64List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/Float64List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/Float64List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A05_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A05_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A05_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/Float64x2List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/elementSizeInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/offsetInBytes_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Float64x2List/setAll_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/Int16List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/Int16List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/Int16List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int16List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/Int32List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/Int32List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/Int32List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4/Int32x4.fromFloat32x4Bits_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/Int32x4List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/Int32x4List.view_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/Int32x4List.view_A05_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/Int32x4List.view_A05_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/Int32x4List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/elementSizeInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int32x4List/setAll_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/Int64List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/Int64List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/Int64List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int64List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int8List/Int8List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Int8List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/Uint16List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/Uint16List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/Uint16List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint16List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/Uint32List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/Uint32List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/Uint32List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint32List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/Uint64List.view_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/Uint64List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/Uint64List.view_A06_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/buffer_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint64List/offsetInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint8ClampedList/Uint8ClampedList.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint8ClampedList/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint8List/Uint8List.view_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+LibTest/typed_data/Uint8List/lengthInBytes_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A01_t03: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A02_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/approxEquals_A04_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/equals_A01_t04: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/identical_A01_t01: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
+Utils/tests/Expect/setEquals_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
 
 [ $compiler == dartk && $strong ]
 Language/Classes/Constructors/Constant_Constructors/potentially_constant_expression_t01: Crash
@@ -784,15 +1472,5 @@
 LibTest/typed_data/Uint8List/every_A01_t01: RuntimeError
 LibTest/typed_data/Uint8List/first_A01_t02: RuntimeError
 LibTest/typed_data/Uint8List/last_A01_t02: RuntimeError
+Utils/tests/Expect/setEquals_A01_t02: CompileTimeError # Dart 1 constants, https://github.com/dart-lang/sdk/issues/33894
 Utils/tests/Expect/throws_A01_t04: RuntimeError
-
-[ $fasta && $strong ]
-Language/Interfaces/Superinterfaces/Inheritance_and_Overriding/not_overriden_members_t01: CompileTimeError
-Language/Types/Type_Void/syntax_t09: CompileTimeError
-Language/Types/Type_Void/using_t02: CompileTimeError
-Language/Types/Type_Void/using_t03: CompileTimeError
-LibTest/io/Stdin/readLineSync_A03_t01: CompileTimeError
-LibTest/io/Stdin/readLineSync_A03_t02: CompileTimeError
-LibTest/io/Stdin/readLineSync_A03_t03: CompileTimeError
-LibTest/io/Stdin/readLineSync_A03_t04: CompileTimeError
-LibTest/io/Stdin/readLineSync_A04_t01: CompileTimeError
diff --git a/tests/compiler/dart2js/codegen/strength_eq_test.dart b/tests/compiler/dart2js/codegen/strength_eq_test.dart
index b75b0c5..327c9cc 100644
--- a/tests/compiler/dart2js/codegen/strength_eq_test.dart
+++ b/tests/compiler/dart2js/codegen/strength_eq_test.dart
@@ -17,7 +17,7 @@
   a.link = a;
   return a;
 }
-main() {
+void main() {
   var x = foo(0);
   return x == x.link;
 }
diff --git a/tests/compiler/dart2js/dart2js.status b/tests/compiler/dart2js/dart2js.status
index 2519623..c003d3f 100644
--- a/tests/compiler/dart2js/dart2js.status
+++ b/tests/compiler/dart2js/dart2js.status
@@ -15,6 +15,8 @@
 codegen/simple_function_subtype_test: Fail # simple_function_subtype_test is temporarily(?) disabled due to new method for building function type tests.
 codegen/string_escapes_test: Fail # Issue 33060
 deferred_loading/deferred_loading_test: Slow, Pass
+end_to_end/dart2js_batch_test: RuntimeError # Dart 1 constants in Sunflower demo.
+end_to_end/dump_info_test: RuntimeError # Dart 1 constants in Sunflower demo.
 equivalence/id_equivalence1_test: Pass, Slow
 equivalence/id_equivalence2_test: Pass, Slow
 generate_code_with_compile_time_errors_test: RuntimeError # not supported yet with the new FE.
diff --git a/tests/compiler/dart2js/sourcemaps/name_test.dart b/tests/compiler/dart2js/sourcemaps/name_test.dart
index e1340d7..f540c8b 100644
--- a/tests/compiler/dart2js/sourcemaps/name_test.dart
+++ b/tests/compiler/dart2js/sourcemaps/name_test.dart
@@ -16,7 +16,7 @@
 const String SOURCE = '''
 
 var toplevelField;
-toplevelMethod() {}
+void toplevelMethod() {}
 void toplevelAnonymous() {
   var foo = () {};
 }
diff --git a/tests/compiler/dart2js_extra/inference_super_set_call_test.dart b/tests/compiler/dart2js_extra/inference_super_set_call_test.dart
index 19e1a06..4258546 100644
--- a/tests/compiler/dart2js_extra/inference_super_set_call_test.dart
+++ b/tests/compiler/dart2js_extra/inference_super_set_call_test.dart
@@ -10,7 +10,9 @@
 abstract class A {
   set x(v) {}
   set z(v) {}
-  set y(v) => 'hi';
+  set y(v) {
+    return 'hi';
+  }
 }
 
 class S extends A {
diff --git a/tests/compiler/dart2js_extra/string_interpolation_dynamic_test.dart b/tests/compiler/dart2js_extra/string_interpolation_dynamic_test.dart
index 115f070..91e9487 100644
--- a/tests/compiler/dart2js_extra/string_interpolation_dynamic_test.dart
+++ b/tests/compiler/dart2js_extra/string_interpolation_dynamic_test.dart
Binary files differ
diff --git a/tests/compiler/dart2js_extra/string_interpolation_test.dart b/tests/compiler/dart2js_extra/string_interpolation_test.dart
index 027128a..beded4c 100644
--- a/tests/compiler/dart2js_extra/string_interpolation_test.dart
+++ b/tests/compiler/dart2js_extra/string_interpolation_test.dart
Binary files differ
diff --git a/tests/compiler/dart2js_native/native_closure_identity_frog_test.dart b/tests/compiler/dart2js_native/native_closure_identity_frog_test.dart
index c5f5084..68c07fe 100644
--- a/tests/compiler/dart2js_native/native_closure_identity_frog_test.dart
+++ b/tests/compiler/dart2js_native/native_closure_identity_frog_test.dart
@@ -4,7 +4,7 @@
 
 import 'native_testing.dart';
 
-typedef MyFunctionType();
+typedef void MyFunctionType();
 
 @Native("A")
 class A {
diff --git a/tests/corelib/corelib.status b/tests/corelib/corelib.status
index f457fda..897bec8 100644
--- a/tests/corelib/corelib.status
+++ b/tests/corelib/corelib.status
@@ -60,7 +60,37 @@
 unicode_test: RuntimeError # jsshell does not recognize character 223 aka \xdf
 
 [ $runtime != none ]
+compare_to_test: RuntimeError # Uppercase constants removed.
+data_uri_test: RuntimeError # Uppercase constants removed.
+date_time_test: RuntimeError # Uppercase constants removed.
+double_ceil2_test: RuntimeError # Uppercase constants removed.
+double_ceil_to_double_test: RuntimeError # Uppercase constants removed.
+double_compare_test: RuntimeError # Uppercase constants removed.
+double_floor2_test: RuntimeError # Uppercase constants removed.
+double_floor_to_double_test: RuntimeError # Uppercase constants removed.
+double_parse_test/01: RuntimeError # Uppercase constants removed.
+double_parse_test/02: RuntimeError # Uppercase constants removed.
+double_parse_test/03: RuntimeError # Uppercase constants removed.
+double_parse_test/none: RuntimeError # Uppercase constants removed.
+double_round2_test: RuntimeError # Uppercase constants removed.
+double_round_to_double_test: RuntimeError # Uppercase constants removed.
+double_truncate2_test: RuntimeError # Uppercase constants removed.
+double_truncate_to_double_test: RuntimeError # Uppercase constants removed.
+double_try_parse_test/01: RuntimeError # Uppercase constants removed.
+double_try_parse_test/02: RuntimeError # Uppercase constants removed.
+double_try_parse_test/03: RuntimeError # Uppercase constants removed.
+double_try_parse_test/none: RuntimeError # Uppercase constants removed.
+hash_set_test/01: RuntimeError # Uppercase constants removed.
+hash_set_test/none: RuntimeError # Uppercase constants removed.
+iterable_contains_test: CompileTimeError # Uppercase constants removed.
+json_map_test: RuntimeError # Uppercase constants removed.
 map_from_test: Fail # Assumes LinkedHashMap implements HashMap.
+map_test: CompileTimeError, RuntimeError # Uppercase constants removed.
+nan_infinity_test/01: RuntimeError # Uppercase constants removed.
+nan_infinity_test/none: RuntimeError # Uppercase constants removed.
+num_clamp_test: RuntimeError # Uppercase constants removed.
+string_source_test: RuntimeError # Uppercase constants removed.
+uri_test: RuntimeError # Uppercase constants removed.
 
 [ $runtime == safari ]
 double_round3_test: RuntimeError
diff --git a/tests/corelib_2/double_try_parse_test.dart b/tests/corelib_2/double_try_parse_test.dart
index 6ca51a3..11dba69 100644
--- a/tests/corelib_2/double_try_parse_test.dart
+++ b/tests/corelib_2/double_try_parse_test.dart
@@ -129,8 +129,8 @@
   testDouble(9007199254740991.0);
   testDouble(9007199254740992.0);
   testDouble(1.7976931348623157e+308);
-  testDouble(double.INFINITY);
-  testDouble(double.NAN);
+  testDouble(double.infinity);
+  testDouble(double.nan);
 
   // Strings that cannot occur from toString of a number.
   testParse("000000000000", 0.0);
@@ -147,8 +147,8 @@
   testParse(".1", 0.1);
   testParse("1.e1", 10.0);
   testParse(".1e1", 1.0);
-  testParse("Infinity", double.INFINITY);
-  testParse("NaN", double.NAN);
+  testParse("Infinity", double.infinity);
+  testParse("NaN", double.nan);
 
   // Cases where mantissa and 10^exponent are representable as a double.
   for (int i = -22; i <= 22; i++) {
@@ -1142,14 +1142,14 @@
       "7851940402630657488671505820681908902000708383676273854845817711"
       "5317644757302700698555713669596228429148198608349364752927190741"
       "68444365510704342711559699508093042880177904174497792",
-      double.INFINITY);
+      double.infinity);
   testParse(
       "1797693134862315807937289714053034150799341327100378344436906077"
       "8514519826392244645590587928934680064583382309459227867357811816"
       "7083648350040856069002886669235928086706171002858964521148060973"
       "2932253823701752298952982895505254202514482107240818876126988420"
       "86346991665034681756244316627357656767417501840572416",
-      double.INFINITY);
+      double.infinity);
 
   // Edge cases of algorithm (e+-22/23).
   testParse("1e22", 1e22);
diff --git a/tests/isolate/isolate.status b/tests/isolate/isolate.status
index 5b370c1..41f92e8 100644
--- a/tests/isolate/isolate.status
+++ b/tests/isolate/isolate.status
@@ -26,6 +26,11 @@
 issue_21398_parent_isolate2_test/01: Skip # Flutter Issue 9114
 simple_message_test/01: Skip # Flutter Issue 9114
 
+[ $runtime != none ]
+kill2_test: RuntimeError # Uppercase constants removed
+kill_self_synchronously_test: RuntimeError # Uppercase constants removed
+kill_test: RuntimeError # Uppercase constants removed
+
 [ $csp ]
 browser/package_resolve_browser_hook_test: SkipByDesign # Test written in a way that violates CSP.
 deferred_in_isolate2_test: Skip # Issue 16898. Deferred loading does not work from an isolate in CSP-mode
diff --git a/tests/language/language.status b/tests/language/language.status
index 037d325..0c5305f 100644
--- a/tests/language/language.status
+++ b/tests/language/language.status
@@ -297,6 +297,28 @@
 wrong_number_type_arguments_test/01: CompileTimeError
 wrong_number_type_arguments_test/02: CompileTimeError
 
+[ $runtime != none ]
+arithmetic_canonicalization_test: RuntimeError # Uppercase constants removed
+double_nan_comparison_test: RuntimeError # Uppercase constants removed
+double_to_string_as_exponential_test: RuntimeError # Uppercase constants removed
+double_to_string_as_precision_test: RuntimeError # Uppercase constants removed
+double_to_string_test: RuntimeError # Uppercase constants removed
+import_combinators_test: RuntimeError # Uppercase constants removed
+infinity_test: RuntimeError # Uppercase constants removed
+intrinsified_methods_test: RuntimeError # Uppercase constants removed
+is_nan_test: RuntimeError # Uppercase constants removed
+mixin_prefix_test: RuntimeError # Uppercase constants removed
+nan_identical_test: RuntimeError # Uppercase constants removed
+null_test/none: RuntimeError # Uppercase constants removed
+number_identity2_test: RuntimeError # Uppercase constants removed
+ref_before_declaration_test/none: RuntimeError # Uppercase constants removed
+vm/load_to_load_forwarding_vm_test: RuntimeError # Uppercase constants removed
+vm/load_to_load_unaligned_forwarding_vm_test: RuntimeError # Uppercase constants removed
+vm/unaligned_float_access_literal_index_test: RuntimeError # Uppercase constants removed
+vm/unaligned_float_access_register_index_test: RuntimeError # Uppercase constants removed
+vm/unaligned_integer_access_literal_index_test: RuntimeError # Uppercase constants removed
+vm/unaligned_integer_access_register_index_test: RuntimeError # Uppercase constants removed
+
 [ $strong ]
 *: SkipByDesign # tests/language_2 has the strong mode versions of these tests.
 
diff --git a/tests/language_2/async_star_test.dart b/tests/language_2/async_star_test.dart
index fa18ff4..abe7de8 100644
--- a/tests/language_2/async_star_test.dart
+++ b/tests/language_2/async_star_test.dart
@@ -596,8 +596,7 @@
       f() async* {
         try {
           list.add(0);
-          list.add(1);
-          yield null;
+          yield list.add(1);
           list.add(2);
         } finally {
           exits.complete(3);
diff --git a/tests/language_2/inferrer_this_access_test.dart b/tests/language_2/inferrer_this_access_test.dart
index 4d1b5fc..2115bc3 100644
--- a/tests/language_2/inferrer_this_access_test.dart
+++ b/tests/language_2/inferrer_this_access_test.dart
@@ -25,7 +25,7 @@
 
 class C extends B {
   set hest(value) {
-    a + 42;
+    return a + 42;
   }
 }
 
diff --git a/tests/language_2/issue15606_test.dart b/tests/language_2/issue15606_test.dart
index a1ec9f9..dc3ad7a 100644
--- a/tests/language_2/issue15606_test.dart
+++ b/tests/language_2/issue15606_test.dart
@@ -6,7 +6,7 @@
 
 var a = [new Object(), 42];
 
-bar(x, y) {}
+void bar(x, y) {}
 
 main() {
   while (false) {
diff --git a/tests/language_2/language_2.status b/tests/language_2/language_2.status
index 0251095..0572c2e 100644
--- a/tests/language_2/language_2.status
+++ b/tests/language_2/language_2.status
@@ -30,6 +30,45 @@
 stacktrace_demangle_ctors_test: SkipByDesign # Names are not scrubbed.
 type_checks_in_factory_method_test: SkipByDesign # Requires checked mode.
 
+[ $fasta ]
+initializer_super_last_test/cc04: MissingCompileTimeError
+initializer_super_last_test/cc09: MissingCompileTimeError
+initializer_super_last_test/cc10: MissingCompileTimeError
+initializer_super_last_test/cc11: MissingCompileTimeError
+initializer_super_last_test/cc12: MissingCompileTimeError
+initializer_super_last_test/cc13: MissingCompileTimeError
+initializer_super_last_test/cc14: MissingCompileTimeError
+initializer_super_last_test/cc15: MissingCompileTimeError
+initializer_super_last_test/cc16: MissingCompileTimeError
+initializer_super_last_test/cc25: MissingCompileTimeError
+initializer_super_last_test/cc26: MissingCompileTimeError
+initializer_super_last_test/cc27: MissingCompileTimeError
+initializer_super_last_test/cc28: MissingCompileTimeError
+initializer_super_last_test/cc29: MissingCompileTimeError
+initializer_super_last_test/cc30: MissingCompileTimeError
+initializer_super_last_test/cc31: MissingCompileTimeError
+initializer_super_last_test/cc32: MissingCompileTimeError
+void/return_future_future_or_void_async_error0_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_future_future_or_void_sync_error0_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_future_or_future_or_void_sync_error0_test: MissingCompileTimeError
+void/return_future_or_future_or_void_sync_error1_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_future_or_void_async_error0_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_future_or_void_sync_error0_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_future_or_void_sync_error1_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_future_or_void_sync_error2_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_future_or_void_sync_error3_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_future_void_async_error0_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_future_void_async_error1_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_future_void_async_error2_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_void_async_error0_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_void_async_error1_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_void_async_error2_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_void_async_error3_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_void_async_error4_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_void_sync_error0_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_void_sync_error1_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+void/return_void_sync_error2_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
+
 [ $compiler != app_jitk && $compiler != dartk && $compiler != dartkp && $mode == debug && $runtime == vm ]
 built_in_identifier_type_annotation_test/set: Crash # Not supported by legacy VM front-end.
 
diff --git a/tests/language_2/language_2_analyzer.status b/tests/language_2/language_2_analyzer.status
index c6dcd86..42452d8 100644
--- a/tests/language_2/language_2_analyzer.status
+++ b/tests/language_2/language_2_analyzer.status
@@ -221,51 +221,78 @@
 vm/regress_33469_test/03: MissingCompileTimeError # http://dartbug.com/33481
 void_type_override_test/02: MissingCompileTimeError
 void_type_override_test/03: MissingCompileTimeError
+void_type_usage_test/call_conditional: MissingCompileTimeError
 void_type_usage_test/call_literal_list_init: MissingCompileTimeError
 void_type_usage_test/call_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/call_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/call_void_init: MissingCompileTimeError
+void_type_usage_test/conditional2_conditional: MissingCompileTimeError
+void_type_usage_test/conditional2_for: MissingCompileTimeError
 void_type_usage_test/conditional2_literal_list_init: MissingCompileTimeError
 void_type_usage_test/conditional2_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/conditional2_null_equals2: MissingCompileTimeError
+void_type_usage_test/conditional2_parens: MissingCompileTimeError
+void_type_usage_test/conditional2_return: MissingCompileTimeError
+void_type_usage_test/conditional2_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional2_stmt: MissingCompileTimeError
 void_type_usage_test/conditional2_void_init: MissingCompileTimeError
+void_type_usage_test/conditional3_conditional: MissingCompileTimeError
+void_type_usage_test/conditional3_for: MissingCompileTimeError
 void_type_usage_test/conditional3_literal_list_init: MissingCompileTimeError
 void_type_usage_test/conditional3_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/conditional3_null_equals2: MissingCompileTimeError
+void_type_usage_test/conditional3_parens: MissingCompileTimeError
+void_type_usage_test/conditional3_return: MissingCompileTimeError
+void_type_usage_test/conditional3_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional3_stmt: MissingCompileTimeError
 void_type_usage_test/conditional3_void_init: MissingCompileTimeError
+void_type_usage_test/conditional_conditional: MissingCompileTimeError
+void_type_usage_test/conditional_for: MissingCompileTimeError
 void_type_usage_test/conditional_literal_list_init: MissingCompileTimeError
 void_type_usage_test/conditional_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/conditional_null_equals2: MissingCompileTimeError
+void_type_usage_test/conditional_parens: MissingCompileTimeError
+void_type_usage_test/conditional_return: MissingCompileTimeError
+void_type_usage_test/conditional_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional_stmt: MissingCompileTimeError
 void_type_usage_test/conditional_void_init: MissingCompileTimeError
+void_type_usage_test/final_local_conditional: MissingCompileTimeError
 void_type_usage_test/final_local_for_in2: MissingCompileTimeError
 void_type_usage_test/final_local_literal_list_init: MissingCompileTimeError
 void_type_usage_test/final_local_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/final_local_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/final_local_void_init: MissingCompileTimeError
+void_type_usage_test/global_conditional: MissingCompileTimeError
 void_type_usage_test/global_literal_list_init: MissingCompileTimeError
 void_type_usage_test/global_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/global_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/global_void_init: MissingCompileTimeError
+void_type_usage_test/instance2_conditional: MissingCompileTimeError
 void_type_usage_test/instance2_literal_list_init: MissingCompileTimeError
 void_type_usage_test/instance2_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/instance2_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/instance2_void_init: MissingCompileTimeError
+void_type_usage_test/instance3_conditional: MissingCompileTimeError
 void_type_usage_test/instance3_literal_list_init: MissingCompileTimeError
 void_type_usage_test/instance3_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/instance3_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/instance3_void_init: MissingCompileTimeError
+void_type_usage_test/instance_conditional: MissingCompileTimeError
 void_type_usage_test/instance_literal_list_init: MissingCompileTimeError
 void_type_usage_test/instance_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/instance_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/instance_void_init: MissingCompileTimeError
+void_type_usage_test/local_conditional: MissingCompileTimeError
 void_type_usage_test/local_literal_list_init: MissingCompileTimeError
 void_type_usage_test/local_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/local_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/local_void_init: MissingCompileTimeError
+void_type_usage_test/param_conditional: MissingCompileTimeError
 void_type_usage_test/param_literal_list_init: MissingCompileTimeError
 void_type_usage_test/param_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/param_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/param_void_init: MissingCompileTimeError
+void_type_usage_test/paren_conditional: MissingCompileTimeError
 void_type_usage_test/paren_literal_list_init: MissingCompileTimeError
 void_type_usage_test/paren_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/paren_literal_map_value_init: MissingCompileTimeError
@@ -342,6 +369,7 @@
 generic_tearoff_test: CompileTimeError
 interceptor6_test: CompileTimeError
 issue13673_test: StaticWarning # Issue 31925
+issue15606_test/none: CompileTimeError # invalid use of void for dart 2
 issue31596_implement_covariant_test: CompileTimeError
 issue31596_override_test/01: CompileTimeError
 issue31596_override_test/02: CompileTimeError
diff --git a/tests/language_2/language_2_dart2js.status b/tests/language_2/language_2_dart2js.status
index bbd6c3e..329ec9c 100644
--- a/tests/language_2/language_2_dart2js.status
+++ b/tests/language_2/language_2_dart2js.status
@@ -702,6 +702,46 @@
 vm/uint32_shift_test: RuntimeError
 vm/unaligned_integer_access_literal_index_test: RuntimeError
 vm/unaligned_integer_access_register_index_test: RuntimeError
+void_block_return_test/00: MissingCompileTimeError
+void_type_usage_test/conditional2_argument: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_conditional: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_dynamic_init: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_for: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_literal_list_init: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_literal_map_value_init: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_literal_map_value_init2: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_null_equals2: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_parens: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_return: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional2_stmt: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_throw: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2_void_init: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2do_while: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2for_in: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional2while: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_argument: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_conditional: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_dynamic_init: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_for: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_literal_list_init: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_literal_map_value_init: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_literal_map_value_init2: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_null_equals2: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_parens: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_return: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional3_stmt: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_throw: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional3_void_init: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional_do_while: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional_for_in: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/conditional_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional_while: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/global_null_equals2: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/local_null_equals2: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/param_null_equals2: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
+void_type_usage_test/paren_null_equals2: Crash # 'package:front_end/src/fasta/type_inference/type_schema_environment.dart': Failed assertion: line 214 pos 12: 'false': is not true.
 wrong_number_type_arguments_test/01: MissingCompileTimeError
 wrong_number_type_arguments_test/none: Pass
 
@@ -857,6 +897,10 @@
 vm/uint32_shift_test: RuntimeError
 vm/unaligned_integer_access_literal_index_test: RuntimeError
 vm/unaligned_integer_access_register_index_test: RuntimeError
+void_block_return_test/00: MissingCompileTimeError
+void_type_usage_test/conditional2_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional3_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional_return_to_void: MissingCompileTimeError
 wrong_number_type_arguments_test/01: MissingCompileTimeError
 wrong_number_type_arguments_test/none: Pass
 
diff --git a/tests/language_2/language_2_dartdevc.status b/tests/language_2/language_2_dartdevc.status
index 10eeba5..1285c54 100644
--- a/tests/language_2/language_2_dartdevc.status
+++ b/tests/language_2/language_2_dartdevc.status
@@ -84,6 +84,7 @@
 invalid_type_argument_count_test/02: MissingCompileTimeError
 invalid_type_argument_count_test/03: MissingCompileTimeError
 invalid_type_argument_count_test/04: MissingCompileTimeError
+issue15606_test/none: CompileTimeError
 issue31596_implement_covariant_test: CompileTimeError
 issue31596_override_test/01: CompileTimeError
 issue31596_override_test/02: CompileTimeError
@@ -202,51 +203,78 @@
 void_type_function_types_test/none: CompileTimeError # Issue 30514
 void_type_override_test/02: MissingCompileTimeError
 void_type_override_test/03: MissingCompileTimeError
+void_type_usage_test/call_conditional: MissingCompileTimeError
 void_type_usage_test/call_literal_list_init: MissingCompileTimeError
 void_type_usage_test/call_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/call_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/call_void_init: MissingCompileTimeError
+void_type_usage_test/conditional2_conditional: MissingCompileTimeError
+void_type_usage_test/conditional2_for: MissingCompileTimeError
 void_type_usage_test/conditional2_literal_list_init: MissingCompileTimeError
 void_type_usage_test/conditional2_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/conditional2_null_equals2: MissingCompileTimeError
+void_type_usage_test/conditional2_parens: MissingCompileTimeError
+void_type_usage_test/conditional2_return: MissingCompileTimeError
+void_type_usage_test/conditional2_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional2_stmt: MissingCompileTimeError
 void_type_usage_test/conditional2_void_init: MissingCompileTimeError
+void_type_usage_test/conditional3_conditional: MissingCompileTimeError
+void_type_usage_test/conditional3_for: MissingCompileTimeError
 void_type_usage_test/conditional3_literal_list_init: MissingCompileTimeError
 void_type_usage_test/conditional3_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/conditional3_null_equals2: MissingCompileTimeError
+void_type_usage_test/conditional3_parens: MissingCompileTimeError
+void_type_usage_test/conditional3_return: MissingCompileTimeError
+void_type_usage_test/conditional3_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional3_stmt: MissingCompileTimeError
 void_type_usage_test/conditional3_void_init: MissingCompileTimeError
+void_type_usage_test/conditional_conditional: MissingCompileTimeError
+void_type_usage_test/conditional_for: MissingCompileTimeError
 void_type_usage_test/conditional_literal_list_init: MissingCompileTimeError
 void_type_usage_test/conditional_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/conditional_null_equals2: MissingCompileTimeError
+void_type_usage_test/conditional_parens: MissingCompileTimeError
+void_type_usage_test/conditional_return: MissingCompileTimeError
+void_type_usage_test/conditional_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional_stmt: MissingCompileTimeError
 void_type_usage_test/conditional_void_init: MissingCompileTimeError
+void_type_usage_test/final_local_conditional: MissingCompileTimeError
 void_type_usage_test/final_local_for_in2: MissingCompileTimeError
 void_type_usage_test/final_local_literal_list_init: MissingCompileTimeError
 void_type_usage_test/final_local_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/final_local_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/final_local_void_init: MissingCompileTimeError
+void_type_usage_test/global_conditional: MissingCompileTimeError
 void_type_usage_test/global_literal_list_init: MissingCompileTimeError
 void_type_usage_test/global_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/global_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/global_void_init: MissingCompileTimeError
+void_type_usage_test/instance2_conditional: MissingCompileTimeError
 void_type_usage_test/instance2_literal_list_init: MissingCompileTimeError
 void_type_usage_test/instance2_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/instance2_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/instance2_void_init: MissingCompileTimeError
+void_type_usage_test/instance3_conditional: MissingCompileTimeError
 void_type_usage_test/instance3_literal_list_init: MissingCompileTimeError
 void_type_usage_test/instance3_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/instance3_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/instance3_void_init: MissingCompileTimeError
+void_type_usage_test/instance_conditional: MissingCompileTimeError
 void_type_usage_test/instance_literal_list_init: MissingCompileTimeError
 void_type_usage_test/instance_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/instance_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/instance_void_init: MissingCompileTimeError
+void_type_usage_test/local_conditional: MissingCompileTimeError
 void_type_usage_test/local_literal_list_init: MissingCompileTimeError
 void_type_usage_test/local_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/local_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/local_void_init: MissingCompileTimeError
+void_type_usage_test/param_conditional: MissingCompileTimeError
 void_type_usage_test/param_literal_list_init: MissingCompileTimeError
 void_type_usage_test/param_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/param_literal_map_value_init: MissingCompileTimeError
 void_type_usage_test/param_void_init: MissingCompileTimeError
+void_type_usage_test/paren_conditional: MissingCompileTimeError
 void_type_usage_test/paren_literal_list_init: MissingCompileTimeError
 void_type_usage_test/paren_literal_map_key_init: MissingCompileTimeError
 void_type_usage_test/paren_literal_map_value_init: MissingCompileTimeError
@@ -517,6 +545,10 @@
 type_variable_bounds_test/06: MissingCompileTimeError
 type_variable_bounds_test/08: MissingCompileTimeError
 type_variable_bounds_test/11: MissingCompileTimeError
+void_block_return_test/00: MissingCompileTimeError
+void_type_usage_test/conditional2_return_to_void: MissingCompileTimeError, Crash
+void_type_usage_test/conditional3_return_to_void: MissingCompileTimeError, Crash
+void_type_usage_test/conditional_return_to_void: MissingCompileTimeError, Crash
 wrong_number_type_arguments_test/01: MissingCompileTimeError
 
 [ $compiler == dartdevk && $checked ]
diff --git a/tests/language_2/language_2_kernel.status b/tests/language_2/language_2_kernel.status
index 997c008..cdaf95b 100644
--- a/tests/language_2/language_2_kernel.status
+++ b/tests/language_2/language_2_kernel.status
@@ -255,23 +255,6 @@
 field3_test/02: MissingCompileTimeError # Issue 33022
 generic_methods_bounds_test/01: MissingCompileTimeError # Issue 33018
 generic_methods_recursive_bound_test/02: MissingCompileTimeError # Issue 33018
-initializer_super_last_test/cc04: MissingCompileTimeError
-initializer_super_last_test/cc09: MissingCompileTimeError
-initializer_super_last_test/cc10: MissingCompileTimeError
-initializer_super_last_test/cc11: MissingCompileTimeError
-initializer_super_last_test/cc12: MissingCompileTimeError
-initializer_super_last_test/cc13: MissingCompileTimeError
-initializer_super_last_test/cc14: MissingCompileTimeError
-initializer_super_last_test/cc15: MissingCompileTimeError
-initializer_super_last_test/cc16: MissingCompileTimeError
-initializer_super_last_test/cc25: MissingCompileTimeError
-initializer_super_last_test/cc26: MissingCompileTimeError
-initializer_super_last_test/cc27: MissingCompileTimeError
-initializer_super_last_test/cc28: MissingCompileTimeError
-initializer_super_last_test/cc29: MissingCompileTimeError
-initializer_super_last_test/cc30: MissingCompileTimeError
-initializer_super_last_test/cc31: MissingCompileTimeError
-initializer_super_last_test/cc32: MissingCompileTimeError
 issue31596_super_test/02: MissingCompileTimeError
 issue31596_super_test/04: MissingCompileTimeError
 malbounded_instantiation_test/01: MissingCompileTimeError # Issue 33018
@@ -363,6 +346,228 @@
 vm/debug_break_enabled_vm_test/01: CompileTimeError # KernelVM bug: Bad test using extended break syntax.
 vm/debug_break_enabled_vm_test/none: CompileTimeError # KernelVM bug: Bad test using extended break syntax.
 vm/regress_27201_test: CompileTimeError # Fasta/KernelVM bug: Deferred loading kernel issue 30273.
+void_type_callbacks_test/00: MissingCompileTimeError
+void_type_callbacks_test/01: MissingCompileTimeError
+void_type_function_types_test/04: MissingCompileTimeError # Issue 32804
+void_type_function_types_test/06: MissingCompileTimeError # Issue 32804
+void_type_function_types_test/08: MissingCompileTimeError # Issue 32804
+void_type_override_test/03: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_cascade: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_is: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_literal_map_key_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_literal_map_key_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_null_dot: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_toString: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/call_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_for: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_parens: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_stmt: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional2while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_for: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_parens: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_stmt: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional3_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_for: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_parens: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_stmt: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/conditional_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_cascade: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_is: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_literal_map_key_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_literal_map_key_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_null_dot: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_toString: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/final_local_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_cascade: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_is: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_literal_map_key_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_literal_map_key_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_null_dot: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_toString: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/global_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_cascade: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_is: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_literal_map_key_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_literal_map_key_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_null_dot: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_toString: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance2_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_cascade: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_is: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_literal_map_key_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_literal_map_key_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_null_dot: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_toString: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance3_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_cascade: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_is: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_literal_map_key_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_literal_map_key_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_null_dot: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_toString: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/instance_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_cascade: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_is: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_literal_map_key_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_literal_map_key_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_null_dot: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_toString: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/local_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_cascade: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_is: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_literal_map_key_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_literal_map_key_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_null_dot: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_toString: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/param_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_argument: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_cascade: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_conditional: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_do_while: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_dynamic_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_for_in: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_is: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_literal_list_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_literal_map_key_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_literal_map_key_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_literal_map_value_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_literal_map_value_init2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_null_dot: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_null_equals2: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_return: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_throw: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_toString: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_void_init: MissingCompileTimeError # Issue 32804
+void_type_usage_test/paren_while: MissingCompileTimeError # Issue 32804
 
 [ $arch != simarm && $arch != simarm64 && $arch != simdbc64 && $compiler == dartk && $runtime == vm && $strong ]
 export_ambiguous_main_test: Crash # Issue 32618
@@ -611,6 +816,10 @@
 vm/closure_memory_retention_test: Skip # KernelVM bug: Hits OOM
 vm/regress_29145_test: Skip # Issue 29145
 vm/type_cast_vm_test: RuntimeError
+void_block_return_test/00: MissingCompileTimeError
+void_type_usage_test/conditional2_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional3_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional_return_to_void: MissingCompileTimeError
 web_int_literals_test/*: SkipByDesign # Test applies only to JavaScript targets
 wrong_number_type_arguments_test/01: MissingCompileTimeError
 wrong_number_type_arguments_test/none: Pass
@@ -978,6 +1187,10 @@
 vm/type_vm_test/30: MissingRuntimeError
 vm/type_vm_test/31: MissingRuntimeError
 vm/type_vm_test/32: MissingRuntimeError
+void_block_return_test/00: MissingCompileTimeError
+void_type_usage_test/conditional2_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional3_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional_return_to_void: MissingCompileTimeError
 wrong_number_type_arguments_test/01: MissingCompileTimeError
 
 [ $compiler == dartkp && $minified ]
@@ -1211,6 +1424,10 @@
 redirecting_factory_infinite_steps_test/01: MissingCompileTimeError
 redirecting_factory_malbounded_test/01: MissingCompileTimeError
 type_promotion_logical_and_test/01: MissingCompileTimeError
+void_block_return_test/00: MissingCompileTimeError
+void_type_usage_test/conditional2_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional3_return_to_void: MissingCompileTimeError
+void_type_usage_test/conditional_return_to_void: MissingCompileTimeError
 wrong_number_type_arguments_test/01: MissingCompileTimeError
 
 [ $fasta && !$strong ]
diff --git a/tests/language_2/void_type_usage_test.dart b/tests/language_2/void_type_usage_test.dart
index 8d25350..5ba0547 100644
--- a/tests/language_2/void_type_usage_test.dart
+++ b/tests/language_2/void_type_usage_test.dart
@@ -8,7 +8,7 @@
 
 Object testVoidParam(void x) {
   x;  //# param_stmt: ok
-  true ? x : x;  //# param_conditional: ok
+  true ? x : x;  //# param_conditional: compile-time error
   for (x; false; x) {}   //# param_for: ok
   use(x);   //# param_argument: compile-time error
   use(x as Object);  //# param_as: ok
@@ -40,7 +40,7 @@
 
 Object testVoidCall(void f()) {
   f();  //# call_stmt: ok
-  true ? f() : f();  //# call_conditional: ok
+  true ? f() : f();  //# call_conditional: compile-time error
   for (f(); false; f()) {}   //# call_for: ok
   use(f());   //# call_argument: compile-time error
   use(f() as Object);  //# call_as: ok
@@ -72,7 +72,7 @@
   void x;
   x = 42;   //# local_assign: ok
   x;  //# local_stmt: ok
-  true ? x : x;  //# local_conditional: ok
+  true ? x : x;  //# local_conditional: compile-time error
   for (x; false; x) {}   //# local_for: ok
   use(x);   //# local_argument: compile-time error
   use(x as Object);  //# local_as: ok
@@ -107,7 +107,7 @@
   final void x = null;
   x = 42;   //# final_local_assign: compile-time error
   x;  //# final_local_stmt: ok
-  true ? x : x;  //# final_local_conditional: ok
+  true ? x : x;  //# final_local_conditional: compile-time error
   for (x; false; x) {}   //# final_local_for: ok
   use(x);   //# final_local_argument: compile-time error
   use(x as Object);  //# final_local_as: ok
@@ -141,7 +141,7 @@
 void global;
 Object testVoidGlobal() {
   global;  //# global_stmt: ok
-  true ? global : global;  //# global_conditional: ok
+  true ? global : global;  //# global_conditional: compile-time error
   for (global; false; global) {}   //# global_for: ok
   use(global);   //# global_argument: compile-time error
   use(global as Object);  //# global_as: ok
@@ -171,12 +171,12 @@
   return global;   //# global_return_dynamic: ok
 }
 
-Object testVoidConditional() {
+testVoidConditional() {
   void x;
-  (true ? x : x);   //# conditional_parens: ok
-  true ? x : x;  //# conditional_stmt: ok
-  true ? true ? x : x : true ? x : x;  //# conditional_conditional: ok
-  for (true ? x : x; false; true ? x : x) {}   //# conditional_for: ok
+  (true ? x : x);   //# conditional_parens: compile-time error
+  true ? x : x;  //# conditional_stmt: compile-time error
+  true ? true ? x : x : true ? x : x;  //# conditional_conditional: compile-time error
+  for (true ? x : x; false; true ? x : x) {}   //# conditional_for: compile-time error
   use(true ? x : x);   //# conditional_argument: compile-time error
   void y = true ? x : x;   //# conditional_void_init: compile-time error
   dynamic z = true ? x : x;  //# conditional_dynamic_init: compile-time error
@@ -184,16 +184,16 @@
   [true ? x : x];   //# conditional_literal_list_init: compile-time error
   var m1 = {4: true ? x : x};   //# conditional_literal_map_value_init: compile-time error
   Map<dynamic, dynamic> m3 = {4: true ? x : x};  //# conditional_literal_map_value_init2: compile-time error
-  null ?? (true ? x : x);  //# conditional_null_equals2: compile-time error
+  null ?? true ? x : x;  //# conditional_null_equals2: compile-time error
   return true ? x : x;   //# conditional_return: compile-time error
   while (true ? x : x) {};  //# conditional_while: compile-time error
   do {} while (true ? x : x);  //# conditional_do_while: compile-time error
   for (var v in true ? x : x) {}   //# conditional_for_in: compile-time error
 
-  (true ? 499 : x);   //# conditional2_parens: ok
-  true ? 499 : x;  //# conditional2_stmt: ok
-  true ? true ? 499 : x : true ? 499 : x;  //# conditional2_conditional: ok
-  for (true ? 499 : x; false; true ? 499 : x) {}   //# conditional2_for: ok
+  (true ? 499 : x);   //# conditional2_parens: compile-time error
+  true ? 499 : x;  //# conditional2_stmt: compile-time error
+  true ? true ? 499 : x : true ? 499 : x;  //# conditional2_conditional: compile-time error
+  for (true ? 499 : x; false; true ? 499 : x) {}   //# conditional2_for: compile-time error
   use(true ? 499 : x);   //# conditional2_argument: compile-time error
   void y2 = true ? 499 : x;   //# conditional2_void_init: compile-time error
   dynamic z2 = true ? 499 : x;  //# conditional2_dynamic_init: compile-time error
@@ -201,16 +201,16 @@
   [true ? 499 : x];   //# conditional2_literal_list_init: compile-time error
   var m12 = {4: true ? 499 : x};   //# conditional2_literal_map_value_init: compile-time error
   Map<dynamic, dynamic> m32 = {4: true ? 499 : x};  //# conditional2_literal_map_value_init2: compile-time error
-  null ?? (true ? 499 : x);  //# conditional2_null_equals2: compile-time error
+  null ?? true ? 499 : x;  //# conditional2_null_equals2: compile-time error
   return true ? 499 : x;   //# conditional2_return: compile-time error
   while (true ? 499 : x) {};  //# conditional2while: compile-time error
   do {} while (true ? 499 : x);  //# conditional2do_while: compile-time error
   for (var v in true ? 499 : x) {}   //# conditional2for_in: compile-time error
 
-  (true ? x : 499);   //# conditional3_parens: ok
-  true ? x : 499;  //# conditional3_stmt: ok
-  true ? true ? x : 499 : true ? x : 499;  //# conditional3_conditional: ok
-  for (true ? x : 499; false; true ? x : 499) {}   //# conditional3_for: ok
+  (true ? x : 499);   //# conditional3_parens: compile-time error
+  true ? x : 499;  //# conditional3_stmt: compile-time error
+  true ? true ? x : 499 : true ? x : 499;  //# conditional3_conditional: compile-time error
+  for (true ? x : 499; false; true ? x : 499) {}   //# conditional3_for: compile-time error
   use(true ? x : 499);   //# conditional3_argument: compile-time error
   void y3 = true ? x : 499;   //# conditional3_void_init: compile-time error
   dynamic z3 = true ? x : 499;  //# conditional3_dynamic_init: compile-time error
@@ -218,20 +218,13 @@
   [true ? x : 499];   //# conditional3_literal_list_init: compile-time error
   var m13 = {4: true ? x : 499 };   //# conditional3_literal_map_value_init: compile-time error
   Map<dynamic, dynamic> m33 = {4: true ? x : 499 };  //# conditional3_literal_map_value_init2: compile-time error
-  null ?? (true ? x : 499);  //# conditional3_null_equals2: compile-time error
+  null ?? true ? x : 499;  //# conditional3_null_equals2: compile-time error
   return true ? x : 499;   //# conditional3_return: compile-time error
   while (true ? x : 499) {};  //# conditional_while: compile-time error
   do {} while (true ? x : 499);  //# conditional_do_while: compile-time error
   for (var v in true ? x : 499) {}   //# conditional_for_in: compile-time error
 }
 
-dynamic testVoidConditionalDynamic() {
-  void x;
-  return true ? x : x;   //# conditional_return_dynamic: ok
-  return true ? 499 : x;   //# conditional2_return_dynamic: ok
-  return true ? x : 499;   //# conditional3_return_dynamic: ok
-}
-
 class A<T> {
   T x;
 
@@ -265,7 +258,7 @@
   A<void> a = new A<void>();
   a.x = 499;  //# field_assign: ok
   a.x;  //# instance_stmt: ok
-  true ? a.x : a.x;  //# instance_conditional: ok
+  true ? a.x : a.x;  //# instance_conditional: compile-time error
   for (a.x; false; a.x) {}   //# instance_for: ok
   use(a.x);   //# instance_argument: compile-time error
   use(a.x as Object);  //# instance_as: ok
@@ -292,7 +285,7 @@
   B b = new B();
   b.x = 42;   //# field_assign2: ok
   b.x;  //# instance2_stmt: ok
-  true ? b.x : b.x;  //# instance2_conditional: ok
+  true ? b.x : b.x;  //# instance2_conditional: compile-time error
   for (b.x; false; b.x) {}   //# instance2_for: ok
   use(b.x);   //# instance2_argument: compile-time error
   use(b.x as Object);  //# instance2_as: ok
@@ -320,7 +313,7 @@
   C c = new C();
   c.x = 32;   //# setter_assign: ok
   c.x;  //# instance3_stmt: ok
-  true ? c.x : c.x;  //# instance3_conditional: ok
+  true ? c.x : c.x;  //# instance3_conditional: compile-time error
   for (c.x; false; c.x) {}   //# instance3_for: ok
   use(c.x);   //# instance3_argument: compile-time error
   use(c.x as Object);  //# instance3_as: ok
@@ -360,7 +353,7 @@
 Object testParenthesized() {
   void x;
   (x);  //# paren_stmt: ok
-  true ? (x) : (x);  //# paren_conditional: ok
+  true ? (x) : (x);  //# paren_conditional: compile-time error
   for ((x); false; (x)) {}   //# paren_for: ok
   use((x));   //# paren_argument: compile-time error
   use((x) as Object);  //# paren_as: ok
@@ -400,9 +393,9 @@
   return y;   //# local_return_to_void: ok
   return z;   //# final_local_return_to_void: ok
   return global;   //# global_return_to_void: ok
-  return true ? x : x;   //# conditional_return_to_void: ok
-  return true ? 499 : x;   //# conditional2_return_to_void: ok
-  return true ? x : 499;   //# conditional3_return_to_void: ok
+  return true ? x : x;   //# conditional_return_to_void: compile-time error
+  return true ? 499 : x;   //# conditional2_return_to_void: compile-time error
+  return true ? x : 499;   //# conditional3_return_to_void: compile-time error
   return a.x;   //# instance_return_to_void: ok
   return b.x;   //# instance2_return_to_void: ok
   return c.x;   //# instance3_return_to_void: ok
diff --git a/tests/lib/lib.status b/tests/lib/lib.status
index 60cc04f..70e980b 100644
--- a/tests/lib/lib.status
+++ b/tests/lib/lib.status
@@ -146,7 +146,69 @@
 
 [ $runtime != none ]
 async/stream_controller_async_test: RuntimeError # Library changed.
+async/stream_empty_test: RuntimeError # Uppercase constants removed
 async/stream_from_iterable_test: RuntimeError # Library changed.
+async/stream_iterator_test: RuntimeError # Uppercase constants removed
+async/stream_listen_zone_test: RuntimeError # Uppercase constants removed
+async/zone_bind_callback_test: RuntimeError # Uppercase constants removed
+async/zone_bind_callback_unary_test: RuntimeError # Uppercase constants removed
+async/zone_bind_test: RuntimeError # Uppercase constants removed
+async/zone_create_periodic_timer_test: RuntimeError # Uppercase constants removed
+async/zone_create_timer2_test: RuntimeError # Uppercase constants removed
+async/zone_create_timer_test: RuntimeError # Uppercase constants removed
+async/zone_debug_test: RuntimeError # Uppercase constants removed
+async/zone_empty_description2_test: RuntimeError # Uppercase constants removed
+async/zone_empty_description_test: RuntimeError # Uppercase constants removed
+async/zone_fork_test: RuntimeError # Uppercase constants removed
+async/zone_register_callback_test: RuntimeError # Uppercase constants removed
+async/zone_register_callback_unary_test: RuntimeError # Uppercase constants removed
+async/zone_root_bind_test: RuntimeError # Uppercase constants removed
+async/zone_run_guarded_test: RuntimeError # Uppercase constants removed
+async/zone_run_test: RuntimeError # Uppercase constants removed
+async/zone_run_unary_test: RuntimeError # Uppercase constants removed
+async/zone_value_test: RuntimeError # Uppercase constants removed
+convert/ascii_test: RuntimeError # Uppercase constants removed
+convert/base64_test/none: RuntimeError # Uppercase constants removed
+convert/chunked_conversion_json_decode1_test: RuntimeError # Uppercase constants removed
+convert/chunked_conversion_utf85_test: RuntimeError # Uppercase constants removed
+convert/chunked_conversion_utf87_test: RuntimeError # Uppercase constants removed
+convert/chunked_conversion_utf88_test: RuntimeError # Uppercase constants removed
+convert/codec2_test: RuntimeError # Uppercase constants removed
+convert/encoding_test: RuntimeError # Uppercase constants removed
+convert/html_escape_test: CompileTimeError # Uppercase constants removed
+convert/json_chunk_test: RuntimeError # Uppercase constants removed
+convert/json_lib_test: RuntimeError # Uppercase constants removed
+convert/json_pretty_test: RuntimeError # Uppercase constants removed
+convert/json_test: RuntimeError # Uppercase constants removed
+convert/json_util_test: RuntimeError # Uppercase constants removed
+convert/latin1_test: RuntimeError # Uppercase constants removed
+convert/line_splitter_test: RuntimeError # Uppercase constants removed
+convert/streamed_conversion_json_encode1_test: RuntimeError # Uppercase constants removed
+convert/streamed_conversion_json_utf8_decode_test: RuntimeError # Uppercase constants removed
+convert/streamed_conversion_json_utf8_encode_test: RuntimeError # Uppercase constants removed
+convert/streamed_conversion_utf8_decode_test: RuntimeError # Uppercase constants removed
+convert/streamed_conversion_utf8_encode_test: RuntimeError # Uppercase constants removed
+convert/utf83_test: RuntimeError # Uppercase constants removed
+convert/utf84_test: RuntimeError # Uppercase constants removed
+convert/utf85_test: RuntimeError # Uppercase constants removed
+convert/utf8_encode_test: RuntimeError # Uppercase constants removed
+convert/utf8_test: RuntimeError # Uppercase constants removed
+math/math2_test: RuntimeError # Uppercase constants removed
+math/math_parse_double_test: RuntimeError # Uppercase constants removed
+math/math_test: RuntimeError # Uppercase constants removed
+mirrors/invocation_fuzz_test/emptyarray: RuntimeError # Uppercase constants removed
+mirrors/invocation_fuzz_test/false: RuntimeError # Uppercase constants removed
+mirrors/invocation_fuzz_test/none: RuntimeError # Uppercase constants removed
+mirrors/invocation_fuzz_test/smi: RuntimeError # Uppercase constants removed
+mirrors/invocation_fuzz_test/string: RuntimeError # Uppercase constants removed
+typed_data/endianness_test: RuntimeError # Uppercase constants removed
+typed_data/float32x4_cross_test: RuntimeError # Uppercase constants removed
+typed_data/float32x4_list_test: RuntimeError # Uppercase constants removed
+typed_data/float32x4_shuffle_test: RuntimeError # Uppercase constants removed
+typed_data/float32x4_test: RuntimeError # Uppercase constants removed
+typed_data/float32x4_transpose_test: RuntimeError # Uppercase constants removed
+typed_data/float32x4_two_arg_shuffle_test: RuntimeError # Uppercase constants removed
+typed_data/int32x4_shuffle_test: RuntimeError # Uppercase constants removed
 
 [ $runtime == safari ]
 convert/json_test: Fail # https://bugs.webkit.org/show_bug.cgi?id=134920
diff --git a/tests/lib_2/html/canvasrenderingcontext2d_test.dart b/tests/lib_2/html/canvasrenderingcontext2d_test.dart
index 5bd7025..e73c151 100644
--- a/tests/lib_2/html/canvasrenderingcontext2d_test.dart
+++ b/tests/lib_2/html/canvasrenderingcontext2d_test.dart
@@ -256,7 +256,7 @@
       final cy = 20;
       // Arc centered at (20, 20) with radius 10 will go clockwise
       // from (20 + r, 20) to (20, 20 + r), which is 1/4 of a circle.
-      context.arc(cx, cy, r, 0, PI / 2);
+      context.arc(cx, cy, r, 0, pi / 2);
 
       context.strokeStyle = 'green';
       context.lineWidth = 2;
@@ -276,19 +276,19 @@
 
       // (cx + r/SQRT2, cy + r/SQRT2) should be filled.
       expectPixelFilled(
-          (cx + r / SQRT2).toInt(), (cy + r / SQRT2).toInt(), true);
+          (cx + r / sqrt2).toInt(), (cy + r / sqrt2).toInt(), true);
 
       // (cx - r/SQRT2, cy - r/SQRT2) should be empty.
       expectPixelFilled(
-          (cx - r / SQRT2).toInt(), (cy + r / SQRT2).toInt(), false);
+          (cx - r / sqrt2).toInt(), (cy + r / sqrt2).toInt(), false);
 
       // (cx + r/SQRT2, cy + r/SQRT2) should be empty.
       expectPixelFilled(
-          (cx - r / SQRT2).toInt(), (cy - r / SQRT2).toInt(), false);
+          (cx - r / sqrt2).toInt(), (cy - r / sqrt2).toInt(), false);
 
       // (cx - r/SQRT2, cy - r/SQRT2) should be empty.
       expectPixelFilled(
-          (cx + r / SQRT2).toInt(), (cy - r / SQRT2).toInt(), false);
+          (cx + r / sqrt2).toInt(), (cy - r / sqrt2).toInt(), false);
     });
 
     test('arc anticlockwise', () {
@@ -303,7 +303,7 @@
       // Because of the way arc work, when going anti-clockwise, the end points
       // are not included, so small values are added to radius to make a little
       // more than a 3/4 circle.
-      context.arc(cx, cy, r, .1, PI / 2 - .1, true);
+      context.arc(cx, cy, r, .1, pi / 2 - .1, true);
 
       context.strokeStyle = 'green';
       context.lineWidth = 2;
@@ -323,19 +323,19 @@
 
       // (cx + r/SQRT2, cy + r/SQRT2) should be empty.
       expectPixelFilled(
-          (cx + r / SQRT2).toInt(), (cy + r / SQRT2).toInt(), false);
+          (cx + r / sqrt2).toInt(), (cy + r / sqrt2).toInt(), false);
 
       // (cx - r/SQRT2, cy - r/SQRT2) should be filled.
       expectPixelFilled(
-          (cx - r / SQRT2).toInt(), (cy + r / SQRT2).toInt(), true);
+          (cx - r / sqrt2).toInt(), (cy + r / sqrt2).toInt(), true);
 
       // (cx + r/SQRT2, cy + r/SQRT2) should be filled.
       expectPixelFilled(
-          (cx - r / SQRT2).toInt(), (cy - r / SQRT2).toInt(), true);
+          (cx - r / sqrt2).toInt(), (cy - r / sqrt2).toInt(), true);
 
       // (cx - r/SQRT2, cy - r/SQRT2) should be filled.
       expectPixelFilled(
-          (cx + r / SQRT2).toInt(), (cy - r / SQRT2).toInt(), true);
+          (cx + r / sqrt2).toInt(), (cy - r / sqrt2).toInt(), true);
     });
   });
 
diff --git a/tests/lib_2/lib_2_kernel.status b/tests/lib_2/lib_2_kernel.status
index 462fd22..29fd51d 100644
--- a/tests/lib_2/lib_2_kernel.status
+++ b/tests/lib_2/lib_2_kernel.status
@@ -224,6 +224,7 @@
 mirrors/redirecting_factory_different_type_test/02: MissingCompileTimeError
 mirrors/redirecting_factory_different_type_test/none: RuntimeError
 mirrors/redirecting_factory_reflection_test: RuntimeError
+mirrors/top_level_accessors_test/01: MissingCompileTimeError
 
 # Enabling of dartk for sim{arm,arm64,dbc64} revealed these test failures, which
 # are to be triaged.  Isolate tests are skipped on purpose due to the usage of
@@ -333,6 +334,9 @@
 mirrors/redirecting_factory_different_type_test/01: MissingCompileTimeError
 mirrors/redirecting_factory_different_type_test/02: MissingCompileTimeError
 
+[ $fasta && $strong ]
+mirrors/top_level_accessors_test/01: MissingCompileTimeError
+
 [ $fasta && !$strong ]
 isolate/isolate_import_test/01: MissingCompileTimeError
 isolate/isolate_stress_test: CompileTimeError
diff --git a/tests/standalone_2/io/file_typed_data_test.dart b/tests/standalone_2/io/file_typed_data_test.dart
index d10307d..1e46e49 100644
--- a/tests/standalone_2/io/file_typed_data_test.dart
+++ b/tests/standalone_2/io/file_typed_data_test.dart
@@ -74,7 +74,7 @@
 void testWriteUint8ClampedListAndView() {
   asyncStart();
   const int LIST_LENGTH = 8;
-  const int OFFSET_IN_BYTES_FOR_VIEW = 2 * Uint8ClampedList.BYTES_PER_ELEMENT;
+  const int OFFSET_IN_BYTES_FOR_VIEW = 2 * Uint8ClampedList.bytesPerElement;
   const int VIEW_LENGTH = 4;
   Uint8ClampedList list = new Uint8ClampedList(LIST_LENGTH);
   for (int i = 0; i < LIST_LENGTH; i++) list[i] = i;
diff --git a/tools/VERSION b/tools/VERSION
index b33ce00..e1e08c0 100644
--- a/tools/VERSION
+++ b/tools/VERSION
@@ -28,4 +28,4 @@
 MINOR 0
 PATCH 0
 PRERELEASE 69
-PRERELEASE_PATCH 1
+PRERELEASE_PATCH 2