| Index: dart/compiler/java/com/google/dart/compiler/ast/DartFunctionObjectInvocation.java
|
| diff --git a/dart/compiler/java/com/google/dart/compiler/ast/DartFunctionObjectInvocation.java b/dart/compiler/java/com/google/dart/compiler/ast/DartFunctionObjectInvocation.java
|
| deleted file mode 100644
|
| index 0ef2aaaefc57e7fed89b0c4f7070b15af1749604..0000000000000000000000000000000000000000
|
| --- a/dart/compiler/java/com/google/dart/compiler/ast/DartFunctionObjectInvocation.java
|
| +++ /dev/null
|
| @@ -1,36 +0,0 @@
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -package com.google.dart.compiler.ast;
|
| -
|
| -import java.util.List;
|
| -
|
| -/**
|
| - * Function-object invocation AST node.
|
| - */
|
| -public class DartFunctionObjectInvocation extends DartInvocation {
|
| -
|
| - private DartExpression target;
|
| -
|
| - public DartFunctionObjectInvocation(DartExpression target, List<DartExpression> args) {
|
| - super(args);
|
| - this.target = becomeParentOf(target);
|
| - }
|
| -
|
| - @Override
|
| - public DartExpression getTarget() {
|
| - return target;
|
| - }
|
| -
|
| - @Override
|
| - public void visitChildren(ASTVisitor<?> visitor) {
|
| - safelyVisitChild(target, visitor);
|
| - visitor.visit(getArguments());
|
| - }
|
| -
|
| - @Override
|
| - public <R> R accept(ASTVisitor<R> visitor) {
|
| - return visitor.visitFunctionObjectInvocation(this);
|
| - }
|
| -}
|
|
|