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

Unified Diff: dart/compiler/java/com/google/dart/compiler/ast/DartBinaryExpression.java

Issue 20722006: Removed compiler/ directory from repository (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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
Index: dart/compiler/java/com/google/dart/compiler/ast/DartBinaryExpression.java
diff --git a/dart/compiler/java/com/google/dart/compiler/ast/DartBinaryExpression.java b/dart/compiler/java/com/google/dart/compiler/ast/DartBinaryExpression.java
deleted file mode 100644
index 25017d28440d89cf227ec5efff36bcdae6081280..0000000000000000000000000000000000000000
--- a/dart/compiler/java/com/google/dart/compiler/ast/DartBinaryExpression.java
+++ /dev/null
@@ -1,70 +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.parser.Token;
-import com.google.dart.compiler.resolver.Element;
-import com.google.dart.compiler.resolver.MethodNodeElement;
-
-/**
- * Represents a Dart binary expression.
- */
-public class DartBinaryExpression extends DartExpression {
-
- private final Token op;
- private final int opOffset;
- private DartExpression arg1;
- private DartExpression arg2;
- private MethodNodeElement element;
-
- public DartBinaryExpression(Token op, int opOffset, DartExpression arg1, DartExpression arg2) {
- this.opOffset = opOffset;
- assert op.isBinaryOperator() : op;
-
- this.op = op;
- this.arg1 = becomeParentOf(arg1 != null ? arg1 : new DartSyntheticErrorExpression());
- this.arg2 = becomeParentOf(arg2 != null ? arg2 : new DartSyntheticErrorExpression());
- }
-
- public DartExpression getArg1() {
- return arg1;
- }
-
- public DartExpression getArg2() {
- return arg2;
- }
-
- public Token getOperator() {
- return op;
- }
-
- /**
- * @return the character offset of the {@link #getOperator()} token.
- */
- public int getOperatorOffset() {
- return opOffset;
- }
-
- @Override
- public void visitChildren(ASTVisitor<?> visitor) {
- safelyVisitChild(arg1, visitor);
- safelyVisitChild(arg2, visitor);
- }
-
- @Override
- public <R> R accept(ASTVisitor<R> visitor) {
- return visitor.visitBinaryExpression(this);
- }
-
- @Override
- public MethodNodeElement getElement() {
- return element;
- }
-
- @Override
- public void setElement(Element element) {
- this.element = (MethodNodeElement) element;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698