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

Unified Diff: tool/input_sdk/private/types.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 | « tool/input_sdk/private/operations.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/private/types.dart
diff --git a/tool/input_sdk/private/types.dart b/tool/input_sdk/private/types.dart
index d0029361a8930d223506b1c289f74df5dfe01b03..ec99cf99bfe4e073de115f42bc5ff49302f4270f 100644
--- a/tool/input_sdk/private/types.dart
+++ b/tool/input_sdk/private/types.dart
@@ -263,7 +263,7 @@ _functionType(definite, returnType, args, extra) => JS('', '''(() => {
/// they will be replaced with bottom.
///
functionType(returnType, args, extra) => JS('', '''(() => {
- return _functionType(false, $returnType, $args, $extra);
+ return $_functionType(false, $returnType, $args, $extra);
})()''');
///
@@ -271,7 +271,7 @@ functionType(returnType, args, extra) => JS('', '''(() => {
/// bottom occurs.
///
definiteFunctionType(returnType, args, extra) => JS('', '''(() => {
- return _functionType(true, $returnType, $args, $extra);
+ return $_functionType(true, $returnType, $args, $extra);
})()''');
typedef(name, closure) => JS('', '''(() => {
« no previous file with comments | « tool/input_sdk/private/operations.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698