blob: ee7e58a3a5009a7b79d908d23a53ab0b85a288c9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.internal.compiler.ast;
import org.eclipse.wst.jsdt.core.ast.IASTNode;
import org.eclipse.wst.jsdt.core.ast.IThrowStatement;
import org.eclipse.wst.jsdt.internal.compiler.ASTVisitor;
import org.eclipse.wst.jsdt.internal.compiler.flow.FlowContext;
import org.eclipse.wst.jsdt.internal.compiler.flow.FlowInfo;
import org.eclipse.wst.jsdt.internal.compiler.lookup.BlockScope;
import org.eclipse.wst.jsdt.internal.compiler.lookup.TypeBinding;
public class ThrowStatement extends Statement implements IThrowStatement {
public Expression exception;
public TypeBinding exceptionType;
public ThrowStatement(Expression exception, int sourceStart, int sourceEnd) {
this.exception = exception;
this.sourceStart = sourceStart;
this.sourceEnd = sourceEnd;
}
public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) {
this.exception.analyseCode(currentScope, flowContext, flowInfo);
// need to check that exception thrown is actually caught somewhere
flowContext.checkExceptionHandlers(this.exceptionType, this, flowInfo, currentScope);
return FlowInfo.DEAD_END;
}
public StringBuffer printStatement(int indent, StringBuffer output) {
printIndent(indent, output).append("throw "); //$NON-NLS-1$
this.exception.printExpression(0, output);
return output.append(';');
}
public void resolve(BlockScope scope) {
this.exceptionType = this.exception.resolveType(scope);
if (this.exceptionType != null && this.exceptionType.isValidBinding()) {
// if (this.exceptionType == TypeBinding.NULL) {
// if (scope.compilerOptions().complianceLevel <= ClassFileConstants.JDK1_3){
// // if compliant with 1.4, this problem will not be reported
// scope.problemReporter().cannotThrowNull(this.exception);
// }
// } else if (exceptionType.findSuperTypeErasingTo(TypeIds.T_JavaLangThrowable, true) == null) {
// scope.problemReporter().cannotThrowType(this.exception, this.exceptionType);
// }
// this.exception.computeConversion(scope, this.exceptionType, this.exceptionType);
}
}
public void traverse(ASTVisitor visitor, BlockScope blockScope) {
if (visitor.visit(this, blockScope))
this.exception.traverse(visitor, blockScope);
visitor.endVisit(this, blockScope);
}
public int getASTType() {
return IASTNode.THROW_STATEMENT;
}
}