Index: dart/compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java |
diff --git a/dart/compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java b/dart/compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java |
deleted file mode 100644 |
index 3697326cd283c71a4c98d3b6a389137e21064fcb..0000000000000000000000000000000000000000 |
--- a/dart/compiler/java/com/google/dart/compiler/ast/DartRedirectConstructorInvocation.java |
+++ /dev/null |
@@ -1,49 +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 com.google.dart.compiler.resolver.ConstructorNodeElement; |
-import com.google.dart.compiler.resolver.Element; |
- |
-import java.util.List; |
- |
-/** |
- * Redirected constructor invocation AST node. |
- */ |
-public class DartRedirectConstructorInvocation extends DartInvocation { |
- |
- private DartIdentifier name; |
- private ConstructorNodeElement element; |
- |
- public DartRedirectConstructorInvocation(DartIdentifier name, List<DartExpression> args) { |
- super(args); |
- this.name = becomeParentOf(name); |
- } |
- |
- public DartIdentifier getName() { |
- return name; |
- } |
- |
- @Override |
- public void setElement(Element element) { |
- this.element = (ConstructorNodeElement) element; |
- } |
- |
- @Override |
- public ConstructorNodeElement getElement() { |
- return element; |
- } |
- |
- @Override |
- public void visitChildren(ASTVisitor<?> visitor) { |
- safelyVisitChild(name, visitor); |
- visitor.visit(getArguments()); |
- } |
- |
- @Override |
- public <R> R accept(ASTVisitor<R> visitor) { |
- return visitor.visitRedirectConstructorInvocation(this); |
- } |
-} |