001: /* ====================================================================
002: * Tea - Copyright (c) 1997-2000 Walt Disney Internet Group
003: * ====================================================================
004: * The Tea Software License, Version 1.1
005: *
006: * Copyright (c) 2000 Walt Disney Internet Group. All rights reserved.
007: *
008: * Redistribution and use in source and binary forms, with or without
009: * modification, are permitted provided that the following conditions
010: * are met:
011: *
012: * 1. Redistributions of source code must retain the above copyright
013: * notice, this list of conditions and the following disclaimer.
014: *
015: * 2. Redistributions in binary form must reproduce the above copyright
016: * notice, this list of conditions and the following disclaimer in
017: * the documentation and/or other materials provided with the
018: * distribution.
019: *
020: * 3. The end-user documentation included with the redistribution,
021: * if any, must include the following acknowledgment:
022: * "This product includes software developed by the
023: * Walt Disney Internet Group (http://opensource.go.com/)."
024: * Alternately, this acknowledgment may appear in the software itself,
025: * if and wherever such third-party acknowledgments normally appear.
026: *
027: * 4. The names "Tea", "TeaServlet", "Kettle", "Trove" and "BeanDoc" must
028: * not be used to endorse or promote products derived from this
029: * software without prior written permission. For written
030: * permission, please contact opensource@dig.com.
031: *
032: * 5. Products derived from this software may not be called "Tea",
033: * "TeaServlet", "Kettle" or "Trove", nor may "Tea", "TeaServlet",
034: * "Kettle", "Trove" or "BeanDoc" appear in their name, without prior
035: * written permission of the Walt Disney Internet Group.
036: *
037: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
038: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
039: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
040: * DISCLAIMED. IN NO EVENT SHALL THE WALT DISNEY INTERNET GROUP OR ITS
041: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
042: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
043: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
044: * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
045: * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
046: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
047: * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
048: * ====================================================================
049: *
050: * For more information about Tea, please see http://opensource.go.com/.
051: */
052:
053: package com.go.tea.parsetree;
054:
055: import com.go.tea.compiler.SourceInfo;
056: import com.go.tea.compiler.Token;
057: import com.go.tea.compiler.Type;
058:
059: /******************************************************************************
060: * A BinaryExpression contains a left expression, a right expression and
061: * an operator. BinaryExpressions never evaluate to null.
062: *
063: * @author Brian S O'Neill
064: * @version
065: * <!--$$Revision:--> 25 <!-- $-->, <!--$$JustDate:--> 9/07/00 <!-- $-->
066: */
067: public abstract class BinaryExpression extends Expression {
068: private Token mOperator;
069: private Expression mLeft;
070: private Expression mRight;
071:
072: public BinaryExpression(SourceInfo info, Token operator,
073: Expression left, Expression right) {
074: super (info);
075:
076: mOperator = operator;
077: mLeft = left;
078: mRight = right;
079: }
080:
081: public Object clone() {
082: BinaryExpression be = (BinaryExpression) super .clone();
083: be.mLeft = (Expression) mLeft.clone();
084: be.mRight = (Expression) mRight.clone();
085: return be;
086: }
087:
088: public boolean isExceptionPossible() {
089: if (mLeft != null) {
090: if (mLeft.isExceptionPossible()) {
091: return true;
092: }
093: Type type = mLeft.getType();
094: if (type != null && type.isNullable()) {
095: return true;
096: }
097: }
098:
099: if (mRight != null) {
100: if (mRight.isExceptionPossible()) {
101: return true;
102: }
103: Type type = mRight.getType();
104: if (type != null && type.isNullable()) {
105: return true;
106: }
107: }
108:
109: return false;
110: }
111:
112: public void setType(Type type) {
113: // BinaryExpressions never evaluate to null.
114: super .setType(type.toNonNull());
115: }
116:
117: public Token getOperator() {
118: return mOperator;
119: }
120:
121: public Expression getLeftExpression() {
122: return mLeft;
123: }
124:
125: public Expression getRightExpression() {
126: return mRight;
127: }
128:
129: public void setLeftExpression(Expression left) {
130: mLeft = left;
131: }
132:
133: public void setRightExpression(Expression right) {
134: mRight = right;
135: }
136: }
|