| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 fasta.source_loader; | 5 library fasta.source_loader; |
| 6 | 6 |
| 7 import 'dart:async' show Future; | 7 import 'dart:async' show Future; |
| 8 | 8 |
| 9 import 'dart:io' show FileSystemException; | 9 import 'dart:io' show FileSystemException; |
| 10 | 10 |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 }); | 334 }); |
| 335 ticker.logMs("Built program"); | 335 ticker.logMs("Built program"); |
| 336 } | 336 } |
| 337 | 337 |
| 338 void computeHierarchy(Program program) { | 338 void computeHierarchy(Program program) { |
| 339 hierarchy = new ClassHierarchy(program); | 339 hierarchy = new ClassHierarchy(program); |
| 340 ticker.logMs("Computed class hierarchy"); | 340 ticker.logMs("Computed class hierarchy"); |
| 341 coreTypes = new CoreTypes(program); | 341 coreTypes = new CoreTypes(program); |
| 342 ticker.logMs("Computed core types"); | 342 ticker.logMs("Computed core types"); |
| 343 } | 343 } |
| 344 |
| 345 List<Uri> getDependencies() => sourceBytes.keys.toList(); |
| 344 } | 346 } |
| OLD | NEW |