blob: db199152930fbd1aa8b31370e876389f6d1f4ad1 [file] [log] [blame]
/*
* Copyright (c) 2012, the Dart project authors.
*
* Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.eclipse.org/legal/epl-v10.html
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.dart.engine.ast;
import com.google.dart.engine.scanner.Token;
/**
* Instances of the class {@code AssertStatement} represent an assert statement.
*
* <pre>
* assertStatement ::=
* 'assert' '(' {@link Expression conditionalExpression} ')' ';'
* </pre>
*
* @coverage dart.engine.ast
*/
public class AssertStatement extends Statement {
/**
* The token representing the 'assert' keyword.
*/
private Token keyword;
/**
* The left parenthesis.
*/
private Token leftParenthesis;
/**
* The condition that is being asserted to be {@code true}.
*/
private Expression condition;
/**
* The right parenthesis.
*/
private Token rightParenthesis;
/**
* The semicolon terminating the statement.
*/
private Token semicolon;
/**
* Initialize a newly created assert statement.
*
* @param keyword the token representing the 'assert' keyword
* @param leftParenthesis the left parenthesis
* @param condition the condition that is being asserted to be {@code true}
* @param rightParenthesis the right parenthesis
* @param semicolon the semicolon terminating the statement
*/
public AssertStatement(Token keyword, Token leftParenthesis, Expression condition,
Token rightParenthesis, Token semicolon) {
this.keyword = keyword;
this.leftParenthesis = leftParenthesis;
this.condition = becomeParentOf(condition);
this.rightParenthesis = rightParenthesis;
this.semicolon = semicolon;
}
@Override
public <R> R accept(AstVisitor<R> visitor) {
return visitor.visitAssertStatement(this);
}
@Override
public Token getBeginToken() {
return keyword;
}
/**
* Return the condition that is being asserted to be {@code true}.
*
* @return the condition that is being asserted to be {@code true}
*/
public Expression getCondition() {
return condition;
}
@Override
public Token getEndToken() {
return semicolon;
}
/**
* Return the token representing the 'assert' keyword.
*
* @return the token representing the 'assert' keyword
*/
public Token getKeyword() {
return keyword;
}
/**
* Return the left parenthesis.
*
* @return the left parenthesis
*/
public Token getLeftParenthesis() {
return leftParenthesis;
}
/**
* Return the right parenthesis.
*
* @return the right parenthesis
*/
public Token getRightParenthesis() {
return rightParenthesis;
}
/**
* Return the semicolon terminating the statement.
*
* @return the semicolon terminating the statement
*/
public Token getSemicolon() {
return semicolon;
}
/**
* Set the condition that is being asserted to be {@code true} to the given expression.
*
* @param the condition that is being asserted to be {@code true}
*/
public void setCondition(Expression condition) {
this.condition = becomeParentOf(condition);
}
/**
* Set the token representing the 'assert' keyword to the given token.
*
* @param keyword the token representing the 'assert' keyword
*/
public void setKeyword(Token keyword) {
this.keyword = keyword;
}
/**
* Set the left parenthesis to the given token.
*
* @param the left parenthesis
*/
public void setLeftParenthesis(Token leftParenthesis) {
this.leftParenthesis = leftParenthesis;
}
/**
* Set the right parenthesis to the given token.
*
* @param rightParenthesis the right parenthesis
*/
public void setRightParenthesis(Token rightParenthesis) {
this.rightParenthesis = rightParenthesis;
}
/**
* Set the semicolon terminating the statement to the given token.
*
* @param semicolon the semicolon terminating the statement
*/
public void setSemicolon(Token semicolon) {
this.semicolon = semicolon;
}
@Override
public void visitChildren(AstVisitor<?> visitor) {
safelyVisitChild(condition, visitor);
}
}