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

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

Issue 10834270: Implement call operator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Simplify nested loop and add TODO.p 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
« no previous file with comments | « no previous file | lib/compiler/implementation/elements/elements.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/compiler.dart
diff --git a/lib/compiler/implementation/compiler.dart b/lib/compiler/implementation/compiler.dart
index 1c1b8339e061d3d2869066552b4b147ad9e4121f..69234fe7f8c32557ec96fb69ee1ee7501d6430ed 100644
--- a/lib/compiler/implementation/compiler.dart
+++ b/lib/compiler/implementation/compiler.dart
@@ -130,6 +130,7 @@ class Compiler implements DiagnosticListener {
EnqueueTask enqueuer;
static final SourceString MAIN = const SourceString('main');
+ static final SourceString CALL_OPERATOR_NAME = const SourceString('call');
static final SourceString NO_SUCH_METHOD = const SourceString('noSuchMethod');
static final SourceString NO_SUCH_METHOD_EXCEPTION =
const SourceString('NoSuchMethodException');
@@ -620,7 +621,6 @@ class Compiler implements DiagnosticListener {
});
world.queueIsClosed = true;
assert(world.checkNoEnqueuedInvokedInstanceMethods());
- world.registerFieldClosureInvocations();
}
void processRecompilationQueue(Enqueuer world) {
« no previous file with comments | « no previous file | lib/compiler/implementation/elements/elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698