| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 /// Tracks the shape of the import/export graph and dependencies between files. | 5 /// Tracks the shape of the import/export graph and dependencies between files. |
| 6 library dev_compiler.src.dependency_graph; | 6 library dev_compiler.src.dependency_graph; |
| 7 | 7 |
| 8 import 'dart:collection' show HashSet; | 8 import 'dart:collection' show HashSet; |
| 9 | 9 |
| 10 import 'package:analyzer/analyzer.dart' show parseDirectives; | 10 import 'package:analyzer/analyzer.dart' show parseDirectives; |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 'dart.math', | 496 'dart.math', |
| 497 'dart.async', | 497 'dart.async', |
| 498 'dart._foreign_helper', | 498 'dart._foreign_helper', |
| 499 'dart._js_embedded_names', | 499 'dart._js_embedded_names', |
| 500 'dart._js_names', | 500 'dart._js_names', |
| 501 'dart._js_helper', | 501 'dart._js_helper', |
| 502 'dart.isolate', | 502 'dart.isolate', |
| 503 'dart.typed_data', | 503 'dart.typed_data', |
| 504 'dart._isolate_helper', | 504 'dart._isolate_helper', |
| 505 'dart._js_primitives', | 505 'dart._js_primitives', |
| 506 'dart.convert', |
| 506 | 507 |
| 507 // TODO(jmesserly): add others | 508 // TODO(jmesserly): add others |
| 508 /* | 509 /* |
| 509 'dart.convert', | |
| 510 'dart._foreign_helper', | 510 'dart._foreign_helper', |
| 511 'dart._interceptors', | 511 'dart._interceptors', |
| 512 'dart._native_typed_data', | 512 'dart._native_typed_data', |
| 513 */ | 513 */ |
| 514 ]; | 514 ]; |
| 515 | 515 |
| 516 /// Runtime files added to applications when running in server mode. | 516 /// Runtime files added to applications when running in server mode. |
| 517 final runtimeFilesForServerMode = new List<String>.from(defaultRuntimeFiles) | 517 final runtimeFilesForServerMode = new List<String>.from(defaultRuntimeFiles) |
| 518 ..addAll(const ['messages_widget.js', 'messages.css']); | 518 ..addAll(const ['messages_widget.js', 'messages.css']); |
| 519 | 519 |
| 520 final _log = new Logger('dev_compiler.dependency_graph'); | 520 final _log = new Logger('dev_compiler.dependency_graph'); |
| OLD | NEW |