Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(454)

Side by Side Diff: pkg/front_end/lib/src/fasta/source/source_loader.dart

Issue 2730743002: Implement deps files in compile_platform.dart. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/front_end/lib/src/fasta/kernel/kernel_target.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/front_end/lib/src/fasta/kernel/kernel_target.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698