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

Unified Diff: pkg/dev_compiler/web/main.dart

Issue 2811343002: Dev compiler debugger related tweaks. (Closed)
Patch Set: Dev compiler debugger related tweaks. Created 3 years, 8 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: pkg/dev_compiler/web/main.dart
diff --git a/pkg/dev_compiler/web/main.dart b/pkg/dev_compiler/web/main.dart
index 1480a6589913b64419f033e582ee992ca15cd77f..b7cdea65f64bac591edcbcc4d416bb86db60c930 100755
--- a/pkg/dev_compiler/web/main.dart
+++ b/pkg/dev_compiler/web/main.dart
@@ -23,13 +23,12 @@ main() {
// Avoid race condition when users try to call $setUpDartDevCompilerInBrowser
// before it is ready by installing the method immediately and making the body
// of the method async.
- setUpCompilerInBrowser = allowInterop((String summaryRoot,
- String sdkUrl,
- List<String> summaryUrls,
+ setUpCompilerInBrowser = allowInterop((String sdkUrl,
+ JSMap<String, String> summaryMap,
Function onCompileReady,
Function onError) async {
(await _setUpCompilerInBrowser)(
- summaryRoot, sdkUrl, summaryUrls, onCompileReady, onError);
+ sdkUrl, summaryMap, onCompileReady, onError);
});
_runCommand(args);
}

Powered by Google App Engine
This is Rietveld 408576698