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

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

Issue 1629553002: List constructor sentinel must not implement 'int' (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
Index: tests/lib/mirrors/constructor_list_test.dart
diff --git a/tests/lib/mirrors/constructor_list_test.dart b/tests/lib/mirrors/constructor_list_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..da5faee360a368af99ad37d2a3a115be60c07ee4
--- /dev/null
+++ b/tests/lib/mirrors/constructor_list_test.dart
@@ -0,0 +1,23 @@
+// Copyright (c) 2016, 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.
+
+library test.constructor_lsit_test;
+
+@MirrorsUsed(targets: const [List])
+import 'dart:mirrors';
+import 'package:expect/expect.dart';
+
+main() {
+ ClassMirror cm;
+ MethodMirror mm;
+
+ cm = reflectClass(List);
+ print(cm);
+
+ var list1 = cm.newInstance(const Symbol(''), []).reflectee;
+ var list2 = cm.newInstance(const Symbol(''), [10]).reflectee;
+
+ Expect.equals(0, list1.length);
+ Expect.equals(10, list2.length);
+}
« no previous file with comments | « sdk/lib/_internal/js_runtime/lib/js_array.dart ('k') | tests/lib/mirrors/constructor_optional_args_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698