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); |
} |