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

Unified Diff: tests/language_strong/async_throw_in_catch_test.dart

Issue 2763823002: Move spaces from before comments to within comments (Closed)
Patch Set: Fix comments Created 3 years, 9 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/language_strong/async_throw_in_catch_test.dart
diff --git a/tests/language_strong/async_throw_in_catch_test.dart b/tests/language_strong/async_throw_in_catch_test.dart
index bbe49cfc02d7b65d1cd246332c48dfa029109fcc..05015a66874d5cd5c020338a1e2111169876619e 100644
--- a/tests/language_strong/async_throw_in_catch_test.dart
+++ b/tests/language_strong/async_throw_in_catch_test.dart
@@ -213,7 +213,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");
@@ -309,7 +309,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 {
@@ -333,7 +333,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");
@@ -359,7 +359,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");
@@ -386,7 +386,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");
@@ -413,7 +413,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 {
@@ -431,7 +431,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");

Powered by Google App Engine
This is Rietveld 408576698