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

Unified Diff: pkg/compiler/lib/src/common/codegen.dart

Issue 1405563002: Move otherDependencies to globalDependencies. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 | « no previous file | pkg/compiler/lib/src/common/registry.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/common/codegen.dart
diff --git a/pkg/compiler/lib/src/common/codegen.dart b/pkg/compiler/lib/src/common/codegen.dart
index 27c9ddbec51ccad7e42037cc9f559271749830b9..ed52590bb5f39ced7d7c9a63d453136178324fb3 100644
--- a/pkg/compiler/lib/src/common/codegen.dart
+++ b/pkg/compiler/lib/src/common/codegen.dart
@@ -51,10 +51,6 @@ class CodegenRegistry extends Registry {
String toString() => 'CodegenRegistry for $currentElement';
- // TODO(johnniwinther): Remove this getter when [Registry] creates a
- // dependency node.
- Iterable<Element> get otherDependencies => treeElements.otherDependencies;
-
CodegenEnqueuer get world => compiler.enqueuer.codegen;
JavaScriptBackend get backend => compiler.backend;
@@ -63,10 +59,6 @@ class CodegenRegistry extends Registry {
assert(false);
}
- void registerDependency(Element element) {
- treeElements.registerDependency(element);
- }
-
void registerInlining(Element inlinedElement, Element context) {
if (compiler.dumpInfo) {
compiler.dumpInfoTask.registerInlined(inlinedElement, context);
« no previous file with comments | « no previous file | pkg/compiler/lib/src/common/registry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698