blob: 9d4310f549910f261ee8e6f824ebde29993e5a67 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
*
* 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 org.apache.uima.ruta.ide.parser.ast;
import java.util.List;
import org.eclipse.dltk.ast.ASTListNode;
import org.eclipse.dltk.ast.ASTVisitor;
import org.eclipse.dltk.ast.expressions.Expression;
import org.eclipse.dltk.ast.expressions.ExpressionConstants;
import org.eclipse.dltk.utils.CorePrinter;
public class RutaListExpression extends RutaExpression {
private ASTListNode exprs;
private int type;
public RutaListExpression(int start, int end, List<Expression> exprList, int type) {
super(start, end, null, RutaTypeConstants.RUTA_TYPE_S);
this.setExprs(new ASTListNode(start, end, exprList));
this.type = type;
}
@Override
public int getKind() {
return ExpressionConstants.E_CONCAT;
}
@Override
public void traverse(ASTVisitor visitor) throws Exception {
if (visitor.visit(this)) {
this.getExprs().traverse(visitor);
visitor.endvisit(this);
}
}
@Override
public void printNode(CorePrinter output) {
getExprs().printNode(output);
}
@Override
public String getOperator() {
return ",";
}
public void setExprs(ASTListNode exprs) {
this.exprs = exprs;
}
public ASTListNode getExprs() {
return exprs;
}
}