blob: 60b26b5c2aa06ffeaeda3a2295a60a03dcdc4326 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2016 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.python.parser.ast.statements;
import org.eclipse.dltk.ast.DLTKToken;
import org.eclipse.dltk.ast.expressions.Expression;
import org.eclipse.dltk.utils.CorePrinter;
/**
* C like switch case conception. this is switch ( x ) { case A: case B: case C: }
* only case and expression of case.
*/
public class CaseStatement extends SimpleStatement {
public CaseStatement(DLTKToken caseToken, Expression caseExpression) {
super(caseToken, caseExpression);
}
public CaseStatement(DLTKToken defaultToken) {
super(defaultToken.getColumn(), defaultToken.getColumn()
+ defaultToken.getText().length(), null);
}
@Override
public int getKind() {
return S_CASE;
}
@Override
public void printNode(CorePrinter output) {
output.formatPrintLn("case: ");
output.indent();
Expression expression = this.getExpression();
if (expression != null) {
expression.printNode(output);
}
output.dedent();
}
}