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

Side by Side Diff: lib/src/dependency_graph.dart

Issue 1141663003: fixes #185, track const ctor dependencies, plus a static field fix (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: format Created 5 years, 7 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 | « lib/src/codegen/js_codegen.dart ('k') | test/codegen/expect/fieldtest.js » ('j') | 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) 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
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');
OLDNEW
« no previous file with comments | « lib/src/codegen/js_codegen.dart ('k') | test/codegen/expect/fieldtest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698