| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library dart2js.compiler_base; | 5 library dart2js.compiler_base; |
| 6 | 6 |
| 7 import 'dart:async' show Future; | 7 import 'dart:async' show Future; |
| 8 | 8 |
| 9 import '../compiler_new.dart' as api; | 9 import '../compiler_new.dart' as api; |
| 10 import 'backend_strategy.dart'; | 10 import 'backend_strategy.dart'; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 Entity get currentElement => _reporter.currentElement; | 137 Entity get currentElement => _reporter.currentElement; |
| 138 | 138 |
| 139 List<CompilerTask> tasks; | 139 List<CompilerTask> tasks; |
| 140 ScannerTask scanner; | 140 ScannerTask scanner; |
| 141 DietParserTask dietParser; | 141 DietParserTask dietParser; |
| 142 ParserTask parser; | 142 ParserTask parser; |
| 143 PatchParserTask patchParser; | 143 PatchParserTask patchParser; |
| 144 LibraryLoaderTask libraryLoader; | 144 LibraryLoaderTask libraryLoader; |
| 145 SerializationTask serialization; | 145 SerializationTask serialization; |
| 146 ResolverTask resolver; | 146 ResolverTask resolver; |
| 147 closureMapping.ClosureTask closureToClassMapper; | 147 closureMapping.ClosureTask closureDataLookup; |
| 148 TypeCheckerTask checker; | 148 TypeCheckerTask checker; |
| 149 GlobalTypeInferenceTask globalInference; | 149 GlobalTypeInferenceTask globalInference; |
| 150 JavaScriptBackend backend; | 150 JavaScriptBackend backend; |
| 151 CodegenWorldBuilder _codegenWorldBuilder; | 151 CodegenWorldBuilder _codegenWorldBuilder; |
| 152 | 152 |
| 153 GenericTask selfTask; | 153 GenericTask selfTask; |
| 154 | 154 |
| 155 /// The constant environment for the frontend interpretation of compile-time | 155 /// The constant environment for the frontend interpretation of compile-time |
| 156 /// constants. | 156 /// constants. |
| 157 ConstantEnvironment constants; | 157 ConstantEnvironment constants; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 : new _ScriptLoader(this), | 219 : new _ScriptLoader(this), |
| 220 new _ElementScanner(scanner), | 220 new _ElementScanner(scanner), |
| 221 serialization, | 221 serialization, |
| 222 resolvePatchUri, | 222 resolvePatchUri, |
| 223 patchParser, | 223 patchParser, |
| 224 environment, | 224 environment, |
| 225 reporter, | 225 reporter, |
| 226 measurer), | 226 measurer), |
| 227 parser = new ParserTask(this), | 227 parser = new ParserTask(this), |
| 228 resolver = createResolverTask(), | 228 resolver = createResolverTask(), |
| 229 closureToClassMapper = new closureMapping.ClosureTask(this), | 229 closureDataLookup = new closureMapping.ClosureTask(this), |
| 230 checker = new TypeCheckerTask(this), | 230 checker = new TypeCheckerTask(this), |
| 231 globalInference = new GlobalTypeInferenceTask(this), | 231 globalInference = new GlobalTypeInferenceTask(this), |
| 232 constants = backend.constantCompilerTask, | 232 constants = backend.constantCompilerTask, |
| 233 deferredLoadTask = new DeferredLoadTask(this), | 233 deferredLoadTask = new DeferredLoadTask(this), |
| 234 mirrorUsageAnalyzerTask = new MirrorUsageAnalyzerTask(this), | 234 mirrorUsageAnalyzerTask = new MirrorUsageAnalyzerTask(this), |
| 235 // [enqueuer] is created earlier because it contains the resolution world | 235 // [enqueuer] is created earlier because it contains the resolution world |
| 236 // objects needed by other tasks. | 236 // objects needed by other tasks. |
| 237 enqueuer, | 237 enqueuer, |
| 238 dumpInfoTask = new DumpInfoTask(this), | 238 dumpInfoTask = new DumpInfoTask(this), |
| 239 selfTask = new GenericTask('self', measurer), | 239 selfTask = new GenericTask('self', measurer), |
| (...skipping 1345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1585 _ElementScanner(this.scanner); | 1585 _ElementScanner(this.scanner); |
| 1586 void scanLibrary(LibraryElement library) => scanner.scanLibrary(library); | 1586 void scanLibrary(LibraryElement library) => scanner.scanLibrary(library); |
| 1587 void scanUnit(CompilationUnitElement unit) => scanner.scan(unit); | 1587 void scanUnit(CompilationUnitElement unit) => scanner.scan(unit); |
| 1588 } | 1588 } |
| 1589 | 1589 |
| 1590 class _EmptyEnvironment implements Environment { | 1590 class _EmptyEnvironment implements Environment { |
| 1591 const _EmptyEnvironment(); | 1591 const _EmptyEnvironment(); |
| 1592 | 1592 |
| 1593 String valueOf(String key) => null; | 1593 String valueOf(String key) => null; |
| 1594 } | 1594 } |
| OLD | NEW |