![JAR search and dependency download from the Maven repository](/logo.png)
webit.script.core.ast.statements.SwitchPart Maven / Gradle / Ivy
The newest version!
// Copyright (c) 2013-2014, Webit Team. All Rights Reserved.
package webit.script.core.ast.statements;
import java.util.HashMap;
import java.util.Map;
import webit.script.core.ast.Expression;
import webit.script.core.ast.Statement;
import webit.script.core.ast.statements.Switch.CaseEntry;
import webit.script.exceptions.ParseException;
import webit.script.util.StatementUtil;
/**
*
* @author Zqq
*/
public final class SwitchPart {
protected int line;
protected int column;
private Expression switchExpr;
private CaseEntry defaultStatement;
private final Map
© 2015 - 2025 Weber Informatics LLC | Privacy Policy