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

Unified Diff: sdk/lib/_internal/js_runtime/lib/async_patch.dart

Issue 2981483002: Use more single quotes in js_runtime (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « no previous file | sdk/lib/_internal/js_runtime/lib/constant_map.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/js_runtime/lib/async_patch.dart
diff --git a/sdk/lib/_internal/js_runtime/lib/async_patch.dart b/sdk/lib/_internal/js_runtime/lib/async_patch.dart
index 7ff200b6c32a8f6b8377278013cb38ae2827df16..ce7b0d1e838846313c059124ede83db951e4db02 100644
--- a/sdk/lib/_internal/js_runtime/lib/async_patch.dart
+++ b/sdk/lib/_internal/js_runtime/lib/async_patch.dart
@@ -575,6 +575,6 @@ class _SyncStarIterable extends IterableBase {
@patch
void _rethrow(Object error, StackTrace stackTrace) {
error = wrapException(error);
- JS("void", "#.stack = #", error, stackTrace.toString());
- JS("void", "throw #", error);
+ JS('void', '#.stack = #', error, stackTrace.toString());
+ JS('void', 'throw #', error);
}
« no previous file with comments | « no previous file | sdk/lib/_internal/js_runtime/lib/constant_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698