Index: lib/compiler/implementation/compiler.dart |
=================================================================== |
--- lib/compiler/implementation/compiler.dart (revision 13392) |
+++ lib/compiler/implementation/compiler.dart (working copy) |
@@ -190,13 +190,13 @@ |
bool hasCrashed = false; |
- Compiler([this.tracer = const Tracer(), |
- this.enableTypeAssertions = false, |
- this.enableUserAssertions = false, |
- this.enableMinification = false, |
- bool emitJavaScript = true, |
- bool generateSourceMap = true, |
- List<String> strips = const []]) |
+ Compiler({this.tracer: const Tracer(), |
+ this.enableTypeAssertions: false, |
+ this.enableUserAssertions: false, |
+ this.enableMinification: false, |
+ bool emitJavaScript: true, |
+ bool generateSourceMap: true, |
+ List<String> strips: const []}) |
: libraries = new Map<String, LibraryElement>(), |
progress = new Stopwatch() { |
progress.start(); |