| 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, HashMap; | 8 import 'dart:collection' show HashSet, HashMap; |
| 9 | 9 |
| 10 import 'package:analyzer/analyzer.dart' show parseDirectives; | 10 import 'package:analyzer/analyzer.dart' show parseDirectives; |
| (...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 'dart.async', | 525 'dart.async', |
| 526 'dart._foreign_helper', | 526 'dart._foreign_helper', |
| 527 'dart._js_embedded_names', | 527 'dart._js_embedded_names', |
| 528 'dart._js_helper', | 528 'dart._js_helper', |
| 529 'dart.isolate', | 529 'dart.isolate', |
| 530 'dart.typed_data', | 530 'dart.typed_data', |
| 531 'dart._native_typed_data', | 531 'dart._native_typed_data', |
| 532 'dart._isolate_helper', | 532 'dart._isolate_helper', |
| 533 'dart._js_primitives', | 533 'dart._js_primitives', |
| 534 'dart.convert', | 534 'dart.convert', |
| 535 'dart.mirrors', |
| 536 'dart._js_mirrors', |
| 535 // _foreign_helper is not included, as it only defines the JS builtin that | 537 // _foreign_helper is not included, as it only defines the JS builtin that |
| 536 // the compiler handles at compile time. | 538 // the compiler handles at compile time. |
| 537 ]; | 539 ]; |
| 538 | 540 |
| 539 /// Runtime files added to applications when running in server mode. | 541 /// Runtime files added to applications when running in server mode. |
| 540 final runtimeFilesForServerMode = new List<String>.from(defaultRuntimeFiles) | 542 final runtimeFilesForServerMode = new List<String>.from(defaultRuntimeFiles) |
| 541 ..addAll(const ['messages_widget.js', 'messages.css']); | 543 ..addAll(const ['messages_widget.js', 'messages.css']); |
| 542 | 544 |
| 543 final _log = new Logger('dev_compiler.dependency_graph'); | 545 final _log = new Logger('dev_compiler.dependency_graph'); |
| OLD | NEW |