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

Unified Diff: pkg/kernel/testcases/interpreter/object_field_initializers_test.dart

Issue 3002013002: Fix initialization of instance fields. (Closed)
Patch Set: Created 3 years, 4 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
« no previous file with comments | « pkg/kernel/lib/interpreter/interpreter.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/testcases/interpreter/object_field_initializers_test.dart
diff --git a/pkg/kernel/testcases/interpreter/object_field_initializers_test.dart b/pkg/kernel/testcases/interpreter/object_field_initializers_test.dart
index 8c9c7893f06dac44aefac37c7434210999f117e4..88ad9abd1573e45e55b00e89f11d5ce596f9ed8a 100644
--- a/pkg/kernel/testcases/interpreter/object_field_initializers_test.dart
+++ b/pkg/kernel/testcases/interpreter/object_field_initializers_test.dart
@@ -60,6 +60,7 @@ class B {
}
class C {
+ static String staticFoo = 'foo';
Dmitry Stefantsov 2017/08/21 09:40:33 Looks like this update didn't change anything in t
String foo1 = fieldInitializer(1, 'foo1');
String foo2;
String foo3 = fieldInitializer(2, 'foo3');
« no previous file with comments | « pkg/kernel/lib/interpreter/interpreter.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698