blob: 6894a133a290e5b8cc06ee2b33e49b8650e8325a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 xored software, Inc.
*
* 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
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Vladimir Belov)
*******************************************************************************/
package org.eclipse.dltk.javascript.ast;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.runtime.Assert;
import org.eclipse.dltk.ast.ASTNode;
import org.eclipse.dltk.ast.ASTVisitor;
import org.eclipse.dltk.utils.IntList;
public class ArrayInitializer extends Expression {
private final List<Expression> items;
private final IntList commas;
private int LB = -1;
private int RB = -1;
public ArrayInitializer(JSNode parent, int itemCount) {
super(parent);
items = new ArrayList<Expression>(itemCount);
commas = new IntList(itemCount > 0 ? itemCount - 1 : 0);
}
/**
* @see org.eclipse.dltk.ast.ASTNode#traverse(org.eclipse.dltk.ast.ASTVisitor)
*/
@Override
public void traverse(ASTVisitor visitor) throws Exception {
if (visitor.visit(this)) {
if (items != null) {
for (ASTNode node : items) {
node.traverse(visitor);
}
}
visitor.endvisit(this);
}
}
public List<Expression> getItems() {
return this.items;
}
public IntList getCommas() {
return this.commas;
}
public int getLB() {
return this.LB;
}
public void setLB(int pos) {
this.LB = pos;
}
public int getRB() {
return this.RB;
}
public void setRB(int pos) {
this.RB = pos;
}
@Override
public String toSourceString(String indentionString) {
Assert.isTrue(sourceStart() >= 0);
Assert.isTrue(sourceEnd() > 0);
Assert.isTrue(LB >= 0);
Assert.isTrue(RB > 0);
Assert.isTrue(items.size() == 0 || commas.size() == items.size() - 1);
StringBuilder buffer = new StringBuilder();
buffer.append(Keywords.LB);
for (int i = 0; i < items.size(); i++) {
if (i > 0)
buffer.append(", ");
buffer.append(toSourceString(items.get(i), indentionString));
}
buffer.append(Keywords.RB);
return buffer.toString();
}
}