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

Unified Diff: tests/corelib_2/core_runtime_types_static_test.dart

Issue 2986503002: Migrate test block 4 to Dart 2.0. (Closed)
Patch Set: Merge with head 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
« no previous file with comments | « tests/corelib_2/const_list_set_range_test.dart ('k') | tests/corelib_2/core_runtime_types_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib_2/core_runtime_types_static_test.dart
diff --git a/tests/corelib_2/core_runtime_types_static_test.dart b/tests/corelib_2/core_runtime_types_static_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..8bb96c2a529b745b3e5ef321fe515dfeb27ef846
--- /dev/null
+++ b/tests/corelib_2/core_runtime_types_static_test.dart
@@ -0,0 +1,38 @@
+// Copyright (c) 2011, 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.
+
+import "package:expect/expect.dart";
+
+/**
+ * Verify static compilation errors on strings and lists.
+ */
+class CoreStaticTypesTest {
+ static testMain() {
+ testStringOperators();
+ testStringMethods();
+ testListOperators();
+ }
+
+ static testStringOperators() {
+ var q = "abcdef";
+ /*@compile-error=unspecified*/ q['hello'];
+ /*@compile-error=unspecified*/ q[0] = 'x';
+ }
+
+ static testStringMethods() {
+ var s = "abcdef";
+ /*@compile-error=unspecified*/ s.startsWith(1);
+ /*@compile-error=unspecified*/ s.endsWith(1);
+ }
+
+ static testListOperators() {
+ var a = [1, 2, 3, 4];
+ /*@compile-error=unspecified*/ a['0'];
+ /*@compile-error=unspecified*/ a['0'] = 99;
+ }
+}
+
+main() {
+ CoreStaticTypesTest.testMain();
+}
« no previous file with comments | « tests/corelib_2/const_list_set_range_test.dart ('k') | tests/corelib_2/core_runtime_types_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698