Index: dart/compiler/java/com/google/dart/compiler/ast/DartReturnStatement.java |
diff --git a/dart/compiler/java/com/google/dart/compiler/ast/DartReturnStatement.java b/dart/compiler/java/com/google/dart/compiler/ast/DartReturnStatement.java |
deleted file mode 100644 |
index 8148fcc964f47eab53427a11a2e4f1063f46036c..0000000000000000000000000000000000000000 |
--- a/dart/compiler/java/com/google/dart/compiler/ast/DartReturnStatement.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; |
- |
-/** |
- * Represents a Dart 'return' statement. |
- */ |
-public class DartReturnStatement extends DartStatement { |
- |
- private DartExpression value; |
- |
- public DartReturnStatement(DartExpression value) { |
- this.value = becomeParentOf(value); |
- } |
- |
- public DartExpression getValue() { |
- return value; |
- } |
- |
- @Override |
- public boolean isAbruptCompletingStatement() { |
- return true; |
- } |
- |
- @Override |
- public void visitChildren(ASTVisitor<?> visitor) { |
- safelyVisitChild(value, visitor); |
- } |
- |
- @Override |
- public <R> R accept(ASTVisitor<R> visitor) { |
- return visitor.visitReturnStatement(this); |
- } |
-} |