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

Unified Diff: tests/kernel/unsorted/try_context_test.dart

Issue 2434123003: Merge more Kernel infrastructure from kernel_sdk SDK fork. (Closed)
Patch Set: address more comments Created 4 years, 2 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/kernel/unsorted/try_context_test.dart
diff --git a/tests/kernel/unsorted/try_context_test.dart b/tests/kernel/unsorted/try_context_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..f836c89416ed4e9d09497f8cf1b907b83314085b
--- /dev/null
+++ b/tests/kernel/unsorted/try_context_test.dart
@@ -0,0 +1,91 @@
+// 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.
+
+import 'package:expect/expect.dart';
+
+throwValue(val) => throw val;
+
+f1() {
+ var a = 0;
+ var b = 0;
+ var c = 0;
+ var d = 0;
+ for (var i = 0; i < 10; i++) {
+ try {
+ for (var j = 0; j < 11; j++) {
+ try {
+ capture() => [i, j, a, b, c, d];
+ throwValue(j == 10 ? "${j}" : j);
+ } on num catch (e) {
+ a += j;
+ b -= e;
+ }
+ }
+ } catch (e) {
+ c++;
+ d += int.parse(e);
+ }
+ }
+ return [a, b, c, d];
+}
+
+
+f2() {
+ var a = 0;
+ var b = 0;
+ var c = 0;
+ var d = 0;
+ for (var i = 0; i < 10; i++) {
+ try {
+ for (var j = 0; j < 11; j++) {
+ try {
+ capture() => [i, j, a, b, c, d];
+ throwValue(j == 10 ? "${j}" : j);
+ } on num catch (e) {
+ a += j;
+ b -= e;
+ }
+ }
+ } catch (e) {
+ capture() => e;
+ c++;
+ d += int.parse(e);
+ }
+ }
+ return [a, b, c, d];
+}
+
+
+f3() {
+ var a = 0;
+ var b = 0;
+ var c = 0;
+ var d = 0;
+ for (var i = 0; i < 10; i++) {
+ try {
+ for (var j = 0; j < 11; j++) {
+ try {
+ capture() => [i, j, a, b, c, d];
+ throwValue(j == 10 ? "${j}" : j);
+ } on num catch (e) {
+ a += j;
+ b -= e;
+ }
+ }
+ } catch (e) {
+ capture() => e;
+ c++;
+ d += int.parse(e);
+ continue;
+ }
+ }
+ return [a, b, c, d];
+}
+
+
+main() {
+ Expect.listEquals([450, -450, 10, 100], f1());
+ Expect.listEquals([450, -450, 10, 100], f2());
+ Expect.listEquals([450, -450, 10, 100], f3());
+}

Powered by Google App Engine
This is Rietveld 408576698