| Index: lib/compiler/implementation/compiler.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/compiler.dart (revision 12117)
|
| +++ lib/compiler/implementation/compiler.dart (working copy)
|
| @@ -181,9 +181,9 @@
|
| bool generateSourceMap = true,
|
| bool cutDeclarationTypes = false])
|
| : libraries = new Map<String, LibraryElement>(),
|
| - world = new World(),
|
| progress = new Stopwatch() {
|
| progress.start();
|
| + world = new World(this);
|
| scanner = new ScannerTask(this);
|
| dietParser = new DietParserTask(this);
|
| parser = new ParserTask(this);
|
| @@ -554,7 +554,7 @@
|
|
|
| // TODO(ahe): Remove this line. Eventually, enqueuer.resolution
|
| // should know this.
|
| - world.populate(this);
|
| + world.populate();
|
|
|
| log('Compiling...');
|
| phase = PHASE_COMPILING;
|
|
|