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

Unified Diff: tests/compiler/dart2js/kernel/compile_from_dill_test.dart

Issue 2929143002: Handle instance fields in compile_from_dill_test (Closed)
Patch Set: Cleanup Created 3 years, 6 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/kernel/compile_from_dill_test.dart
diff --git a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
index 33d2ddf00c7865ee6da8101ca4533b63fd1ae1d6..686f52abc917ea3fe4b0e1d5de6ad193182b9da1 100644
--- a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
+++ b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
@@ -35,7 +35,10 @@ const SOURCE = const {
'main.dart': '''
foo() => 1;
bar(a) => !a;
-class Class {}
+class Class {
+ int field;
+ Class();
+}
main() {
foo();
bar(true);

Powered by Google App Engine
This is Rietveld 408576698