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

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

Issue 10854158: Make selector registration in the resolver and code generator more explicit. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge from master. Created 8 years, 4 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/namer.dart
diff --git a/lib/compiler/implementation/namer.dart b/lib/compiler/implementation/namer.dart
index 83b3c52f24576234bd8000821419f1b9bcf2a0cd..fc43d2fa4769c638aa0247219b969aa64655b66d 100644
--- a/lib/compiler/implementation/namer.dart
+++ b/lib/compiler/implementation/namer.dart
@@ -35,7 +35,8 @@ class Namer {
/** Some closures must contain their name. The name is stored in
* [STATIC_CLOSURE_NAME_NAME]. */
final String STATIC_CLOSURE_NAME_NAME = @'$name';
- final SourceString CLOSURE_INVOCATION_NAME = Compiler.CALL_OPERATOR_NAME;
+ static final SourceString CLOSURE_INVOCATION_NAME =
floitsch 2012/08/15 14:14:04 we should remove the CLOSURE_INVOCATION_NAME from
+ Compiler.CALL_OPERATOR_NAME;
String closureInvocationName(Selector selector) {

Powered by Google App Engine
This is Rietveld 408576698