Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1125)

Unified Diff: tests/compiler/dart2js/analyze_dart2js_test.dart

Issue 2989453002: Add support for compiling Dart via the FE in dart2js. (Closed)
Patch Set: update status Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/compiler/dart2js/analyze_dart2js_test.dart
diff --git a/tests/compiler/dart2js/analyze_dart2js_test.dart b/tests/compiler/dart2js/analyze_dart2js_test.dart
index 1b1736f59acc6213a4ef1c3119041fdfd0f0bae7..7b73c62b747b391ea9e5c6b234e2a1da28149682 100644
--- a/tests/compiler/dart2js/analyze_dart2js_test.dart
+++ b/tests/compiler/dart2js/analyze_dart2js_test.dart
@@ -21,7 +21,20 @@ import 'related_types.dart';
*/
// TODO(johnniwinther): Support canonical URIs as keys and message kinds as
// values.
-const Map<String, List<String>> WHITE_LIST = const {};
+const Map<String, List<String>> WHITE_LIST = const {
+ "pkg/front_end/lib/src/fasta/kernel/kernel_library_builder.dart": const [
+ "The getter 'iterator' is not defined for the class 'Object'.",
+ ],
+ "pkg/front_end/lib/src/fasta/type_inference/type_schema.dart": const [
+ "The class 'UnknownType' overrides 'operator==', but not 'get hashCode'."
+ ],
+ "pkg/kernel/lib/transformations/closure/": const [
+ "Duplicated library name 'kernel.transformations.closure.converter'",
+ ],
+ "pkg/kernel/lib/transformations/closure/info.dart": const [
+ "Types 'FunctionNode' and 'FunctionDeclaration' have no common subtypes."
+ ],
+};
void main() {
var uri = currentDirectory.resolve('pkg/compiler/lib/src/dart2js.dart');

Powered by Google App Engine
This is Rietveld 408576698