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

Unified Diff: lib/compiler/implementation/universe.dart

Issue 10915104: Move namer into javascript backend. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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/compiler/implementation/universe.dart
diff --git a/lib/compiler/implementation/universe.dart b/lib/compiler/implementation/universe.dart
index 774a7eb20bfbd73eaf05437f895a48404361549e..506d47591a7d15db0ef2ed6b30b950320862625a 100644
--- a/lib/compiler/implementation/universe.dart
+++ b/lib/compiler/implementation/universe.dart
@@ -141,11 +141,11 @@ class Selector implements Hashable {
: this(SelectorKind.CALL, name, library, arity, named);
Selector.callClosure(int arity, [List<SourceString> named = const []])
- : this(SelectorKind.CALL, Namer.CLOSURE_INVOCATION_NAME, null,
+ : this(SelectorKind.CALL, Compiler.CALL_OPERATOR_NAME, null,
arity, named);
Selector.callClosureFrom(Selector selector)
- : this(SelectorKind.CALL, Namer.CLOSURE_INVOCATION_NAME, null,
+ : this(SelectorKind.CALL, Compiler.CALL_OPERATOR_NAME, null,
selector.argumentCount, selector.namedArguments);
// TODO(kasperl): This belongs somewhere else.
« lib/compiler/implementation/compiler.dart ('K') | « lib/compiler/implementation/ssa/codegen.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698