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

Unified Diff: lib/src/dependency_graph.dart

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Address comments 2 Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/src/codegen/js_codegen.dart ('k') | test/browser/index.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/dependency_graph.dart
diff --git a/lib/src/dependency_graph.dart b/lib/src/dependency_graph.dart
index 12d5eb9c4a67f8458dbb5400e6d026e3d5d5fdad..f808fff2b73b2c9fa3b27871b4a04df7f4349d29 100644
--- a/lib/src/dependency_graph.dart
+++ b/lib/src/dependency_graph.dart
@@ -499,7 +499,17 @@ bool _same(Set a, Set b) => a.length == b.length && a.containsAll(b);
/// Runtime files added to all applications when running the compiler in the
/// command line.
final defaultRuntimeFiles = () {
- var files = ['harmony_feature_check.js', 'dart_runtime.js',];
+ var files = [
+ 'harmony_feature_check.js',
+ 'dart_utils.js',
+ 'dart_library.js',
+ '_errors.js',
+ '_types.js',
+ '_rtti.js',
+ '_classes.js',
+ '_operations.js',
+ 'dart_runtime.js',
+ ];
files.addAll(corelibOrder.map((l) => l.replaceAll('.', '/') + '.js'));
return files;
}();
« no previous file with comments | « lib/src/codegen/js_codegen.dart ('k') | test/browser/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698