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