| Index: dart/site/try/src/compilation.dart
|
| diff --git a/dart/site/try/src/compilation.dart b/dart/site/try/src/compilation.dart
|
| index ef7102a78285992cecccd1746474f23315aec686..1817c24a09fa6dd06a616e7b4e1b6570d037a7ba 100644
|
| --- a/dart/site/try/src/compilation.dart
|
| +++ b/dart/site/try/src/compilation.dart
|
| @@ -103,7 +103,12 @@ class CompilationProcess {
|
| if (current != null) current.dispose();
|
| current = this;
|
| console.nodes.clear();
|
| - var options = ['--disable-type-inference'];
|
| + var options = [
|
| + '--analyze-main',
|
| + '--disable-type-inference',
|
| + '--incremental-support',
|
| + '--no-source-maps',
|
| + ];
|
| if (verboseCompiler) options.add('--verbose');
|
| if (minified) options.add('--minify');
|
| if (onlyAnalyze) options.add('--analyze-only');
|
|
|