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

Unified Diff: tests/language/malformed2_lib.dart

Issue 54983007: Make test of malformed types a dynamic type error. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 7 years, 1 month 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/language/library_ambiguous_test.dart ('k') | tests/language/malformed2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/malformed2_lib.dart
diff --git a/tests/language/malformed2_lib.dart b/tests/language/malformed2_lib.dart
new file mode 100644
index 0000000000000000000000000000000000000000..50155a34908919216e509b65dc2495ce1d1e4919
--- /dev/null
+++ b/tests/language/malformed2_lib.dart
@@ -0,0 +1,57 @@
+// Copyright (c) 2013, 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.
+
+part of malformed_test;
+
+/// [o] is either `null` or `new List<String>()`.
+void testValue(var o) {
+ assert(o == null || o is List<String>);
+
+ test(true, () => o is Unresolved, "$o is Unresolved");
+ test(false, () => o is List<Unresolved>, "$o is List<Unresolved>");
+ test(true, () => o is! Unresolved, "$o is! Unresolved");
+ test(false, () => o is! List<Unresolved>, "$o is List<Unresolved>");
+
+ test(true, () => o as Unresolved, "$o as Unresolved");
+ test(false, () => o as List<Unresolved>, "$o as List<Unresolved>");
+
+ test(false, () {
+ try {
+ } on Unresolved catch (e) {
+ } catch (e) {
+ }
+ }, "on Unresolved catch: Nothing thrown.");
+ test(true, () {
+ try {
+ throw o;
+ } on Unresolved catch (e) {
+ } catch (e) {
+ }
+ }, "on Unresolved catch ($o)");
+ test(false, () {
+ try {
+ throw o;
+ } on List<String> catch (e) {
+ } on NullThrownError catch (e) {
+ } on Unresolved catch (e) {
+ } catch (e) {
+ }
+ }, "on List<String>/NullThrowError catch ($o)");
+ test(false, () {
+ try {
+ throw o;
+ } on List<Unresolved> catch (e) {
+ } on NullThrownError catch (e) {
+ } on Unresolved catch (e) {
+ } catch (e) {
+ }
+ }, "on List<Unresolved>/NullThrowError catch ($o)");
+
+ test(o != null && inCheckedMode(),
+ () { Unresolved u = o; },
+ "Unresolved u = $o;");
+ test(false,
+ () { List<Unresolved> u = o; },
+ "List<Unresolved> u = $o;");
+}
« no previous file with comments | « tests/language/library_ambiguous_test.dart ('k') | tests/language/malformed2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698