blob: 8e6b7d4df14cc441900444327f1161ae8e869eff [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.expressions;
import org.eclipse.dltk.ast.expressions.ExpressionList;
import org.eclipse.dltk.python.parser.ast.PythonConstants;
public class PythonTestListExpression extends ExpressionList {
public PythonTestListExpression() {
}
@Override
public int getKind() {
return PythonConstants.E_TESTLIST;
}
}