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

Unified Diff: pkg/kernel/testcases/interpreter/try_catch_finally_test.dart

Issue 2985383002: Add partial support for TryFinally and TryCatch statements (Closed)
Patch Set: Merge Created 3 years, 4 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: pkg/kernel/testcases/interpreter/try_catch_finally_test.dart
diff --git a/pkg/kernel/testcases/interpreter/try_catch_finally_test.dart b/pkg/kernel/testcases/interpreter/try_catch_finally_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..fc4649d4aa488fd54d5de226a6d5a67d2af5e3d0
--- /dev/null
+++ b/pkg/kernel/testcases/interpreter/try_catch_finally_test.dart
@@ -0,0 +1,34 @@
+// Copyright (c) 2017, 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.
+
+main() {
+ try {
+ print('hello1');
+ } catch (e, _) {} finally {
+ print('hello2');
+ }
+ print('hello3');
+ print(foo());
+ print(bar());
+}
+
+int foo() {
+ try {
+ print('foo 1');
+ return 1;
+ } catch (e, _) {} finally {
+ print('foo 2');
+ return 2;
+ }
+}
+
+int bar() {
+ try {
+ print('bar 1');
+ return 1;
+ } catch (e, _) {} finally {
+ print('bar 2');
+ }
+ return 0;
+}
« no previous file with comments | « pkg/kernel/lib/interpreter/interpreter.dart ('k') | pkg/kernel/testcases/interpreter/try_catch_finally_test.dart.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698