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

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: Add missing file 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
Index: lib/src/dependency_graph.dart
diff --git a/lib/src/dependency_graph.dart b/lib/src/dependency_graph.dart
index 12d5eb9c4a67f8458dbb5400e6d026e3d5d5fdad..b92833d8db3bde14a22d8f8add100d3446077732 100644
--- a/lib/src/dependency_graph.dart
+++ b/lib/src/dependency_graph.dart
@@ -499,7 +499,18 @@ 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',
+ 'js_utils.js',
+ 'loader.js',
+ 'dartx.js',
+ 'errors.js',
+ 'types.js',
+ 'rtti.js',
+ 'classes.js',
+ 'operations.js',
+ 'dart_runtime.js',
+ ];
files.addAll(corelibOrder.map((l) => l.replaceAll('.', '/') + '.js'));
return files;
}();

Powered by Google App Engine
This is Rietveld 408576698