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: dart/sdk/lib/_internal/compiler/implementation/js/nodes.dart

Issue 27524003: Generate tear-off closures dynamically. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r30954 Created 7 years 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: dart/sdk/lib/_internal/compiler/implementation/js/nodes.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/js/nodes.dart b/dart/sdk/lib/_internal/compiler/implementation/js/nodes.dart
index e6268a3053b4c4a2270286247c22d0b9ea2e69ee..5d18972729315a29bd59d26abd70d7d6e2d0bc9f 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/js/nodes.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/js/nodes.dart
@@ -453,8 +453,6 @@ abstract class Expression extends Node {
Call callWith(List<Expression> arguments) => new Call(this, arguments);
- New newWith(List<Expression> arguments) => new New(this, arguments);
-
PropertyAccess operator [](expression) {
if (expression is Expression) {
return new PropertyAccess(this, expression);

Powered by Google App Engine
This is Rietveld 408576698