| Index: tests/language/async_throw_in_catch_test.dart
|
| diff --git a/tests/language/async_throw_in_catch_test.dart b/tests/language/async_throw_in_catch_test.dart
|
| index 6117a2605792ed195bfe395426c34dd8cf442d4d..df8aa3e7723b34f7e9d1cf2f8cd0c0cdd5508bda 100644
|
| --- a/tests/language/async_throw_in_catch_test.dart
|
| +++ b/tests/language/async_throw_in_catch_test.dart
|
| @@ -212,7 +212,7 @@ foo10(Tracer tracer) async {
|
| } catch (error) {
|
| tracer.trace("b");
|
| try {
|
| - await new Future.value(3); /// forceAwait: continued
|
| + await new Future.value(3); // /// forceAwait: continued
|
| throw "Error2";
|
| } catch(error) {
|
| tracer.trace("c");
|
| @@ -308,7 +308,7 @@ foo13(Tracer tracer) async {
|
| tracer.trace("c");
|
| try {
|
| try {
|
| - await new Future.value(3); /// forceAwait: continued
|
| + await new Future.value(3); // /// forceAwait: continued
|
| tracer.trace("d");
|
| throw "Error";
|
| } finally {
|
| @@ -332,7 +332,7 @@ foo14(Tracer tracer) async {
|
| } catch (error) {
|
| tracer.trace("b");
|
| try {
|
| - await new Future.value(3); /// forceAwait: continued
|
| + await new Future.value(3); // /// forceAwait: continued
|
| throw "Error2";
|
| } catch(error) {
|
| tracer.trace("c");
|
| @@ -358,7 +358,7 @@ foo15(Tracer tracer) async {
|
| } catch (error) {
|
| tracer.trace("b");
|
| try {
|
| - await new Future.value(3); /// forceAwait: continued
|
| + await new Future.value(3); // /// forceAwait: continued
|
| throw "Error2";
|
| } catch(error) {
|
| tracer.trace("c");
|
| @@ -385,7 +385,7 @@ foo16(Tracer tracer) async {
|
| } catch (error) {
|
| tracer.trace("b");
|
| try {
|
| - await new Future.value(3); /// forceAwait: continued
|
| + await new Future.value(3); // /// forceAwait: continued
|
| throw "Error2";
|
| } catch(error) {
|
| tracer.trace("c");
|
| @@ -412,7 +412,7 @@ foo17(Tracer tracer) async {
|
| tracer.trace("b");
|
| throw "Error";
|
| } catch (error) {
|
| - await new Future.value(3); /// forceAwait: continued
|
| + await new Future.value(3); // /// forceAwait: continued
|
| Expect.equals("Error", error);
|
| tracer.trace("c");
|
| } finally {
|
| @@ -430,7 +430,7 @@ foo18(Tracer tracer) async {
|
| try {
|
| tracer.trace("b");
|
| } finally {
|
| - await new Future.value(3); /// forceAwait: continued
|
| + await new Future.value(3); // /// forceAwait: continued
|
| tracer.trace("c");
|
| }
|
| tracer.trace("d");
|
|
|