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

Unified Diff: tests/lib/mirrors/constructor_optional_args_test.dart

Issue 1632163004: Use existing test for reflectClass(List).createInstance(...) (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 | « tests/lib/mirrors/constructor_list_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/constructor_optional_args_test.dart
diff --git a/tests/lib/mirrors/constructor_optional_args_test.dart b/tests/lib/mirrors/constructor_optional_args_test.dart
index 221da7a7c35145882b28027d18be4e46f2501593..f9d9657e1b063b276fe771d0a0c1be50abc569fc 100644
--- a/tests/lib/mirrors/constructor_optional_args_test.dart
+++ b/tests/lib/mirrors/constructor_optional_args_test.dart
@@ -17,7 +17,7 @@ class A {
class B implements A {
final _x, _y, _z;
- B([x = 'x', y = 'y']) : _x = x, _y = y;
+ B([x = 'x', y = 'y']) : _x = x, _y = y, _z = null;
B.more([x = 'x', y = 'y', z = 'z']) : _x = x, _y = y, _z = z;
« no previous file with comments | « tests/lib/mirrors/constructor_list_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698