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

Unified Diff: tool/input_sdk/private/generators.dart

Issue 1681593004: Fix a couple of references in _runtime that should have been resolved as quasiquotes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 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 | tool/input_sdk/private/operations.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/private/generators.dart
diff --git a/tool/input_sdk/private/generators.dart b/tool/input_sdk/private/generators.dart
index 84c594303df5f11e0d7f42766833ee52a0387ebb..6203f71973b5e16da645f6af929f7197c7d6af3d 100644
--- a/tool/input_sdk/private/generators.dart
+++ b/tool/input_sdk/private/generators.dart
@@ -219,5 +219,5 @@ final _AsyncStarStreamController = JS('', '''
/// Returns a Stream of T implemented by an async* function. */
///
asyncStar(gen, T, @rest args) => JS('', '''(() => {
- return new _AsyncStarStreamController($gen, $T, $args).controller.stream;
+ return new $_AsyncStarStreamController($gen, $T, $args).controller.stream;
})()''');
« no previous file with comments | « no previous file | tool/input_sdk/private/operations.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698