/******************************************************************************* * Copyright (c) 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Zend Technologies *******************************************************************************/ package org2.eclipse.php.internal.core.ast.nodes; import java.util.ArrayList; import java.util.Collections; import java.util.List; import org2.eclipse.php.internal.core.PHPVersion; import org2.eclipse.php.internal.core.ast.match.ASTMatcher; import org2.eclipse.php.internal.core.ast.visitor.Visitor; /** * Represents a list expression. * The list contains variables and/or other lists. * * <pre>e.g.<pre> list($a,$b) = array (1,2), * list($a, list($b, $c)) */ public class ListVariable extends VariableBase { private final ASTNode.NodeList<VariableBase> variables = new ASTNode.NodeList<VariableBase>(VARIABLES_PROPERTY); /** * The structural property of this node type. */ public static final ChildListPropertyDescriptor VARIABLES_PROPERTY = new ChildListPropertyDescriptor(ListVariable.class, "variables", VariableBase.class, CYCLE_RISK); //$NON-NLS-1$ /** * A list of property descriptors (element type: * {@link StructuralPropertyDescriptor}), * or null if uninitialized. */ private static final List<StructuralPropertyDescriptor> PROPERTY_DESCRIPTORS; static { List<StructuralPropertyDescriptor> properyList = new ArrayList<StructuralPropertyDescriptor>(2); properyList.add(VARIABLES_PROPERTY); PROPERTY_DESCRIPTORS = Collections.unmodifiableList(properyList); } private ListVariable(int start, int end, AST ast, VariableBase[] variables) { super(start, end, ast); if (variables == null) { throw new IllegalArgumentException(); } for (VariableBase variableBase : variables) { this.variables.add(variableBase); } } public ListVariable(AST ast) { super(ast); } @SuppressWarnings({"unchecked", "rawtypes"}) public ListVariable(int start, int end, AST ast, List variables) { this(start, end, ast, variables == null ? null : (VariableBase[]) variables.toArray(new VariableBase[variables.size()])); } public void accept0(Visitor visitor) { final boolean visit = visitor.visit(this); if (visit) { childrenAccept(visitor); } visitor.endVisit(this); } public void childrenAccept(Visitor visitor) { for (ASTNode node : this.variables) { node.accept(visitor); } } public void traverseTopDown(Visitor visitor) { accept(visitor); for (ASTNode node : this.variables) { node.traverseTopDown(visitor); } } public void traverseBottomUp(Visitor visitor) { for (ASTNode node : this.variables) { node.traverseBottomUp(visitor); } accept(visitor); } public void toString(StringBuffer buffer, String tab) { buffer.append(tab).append("<List"); //$NON-NLS-1$ appendInterval(buffer); buffer.append(">\n"); //$NON-NLS-1$ for (ASTNode node : this.variables) { node.toString(buffer, TAB + tab); buffer.append("\n"); //$NON-NLS-1$ } buffer.append(tab).append("</List>"); //$NON-NLS-1$ } public int getType() { return ASTNode.LIST_VARIABLE; } /** * @deprecated use {@link #variables()} */ public VariableBase[] getVariables() { return variables.toArray(new VariableBase[this.variables.size()]); } /** * @return the list of variables */ public List<VariableBase> variables() { return variables; } /* * Method declared on ASTNode. */ public boolean subtreeMatch(ASTMatcher matcher, Object other) { // dispatch to correct overloaded match method return matcher.match(this, other); } @SuppressWarnings({"unchecked", "rawtypes"}) final List internalGetChildListProperty(ChildListPropertyDescriptor property) { if (property == VARIABLES_PROPERTY) { return variables(); } // allow default implementation to flag the error return super.internalGetChildListProperty(property); } @SuppressWarnings("rawtypes") @Override ASTNode clone0(AST target) { final List variables = ASTNode.copySubtrees(target, variables()); final ListVariable result = new ListVariable(getStart(), getEnd(), target, variables); return result; } @Override List<StructuralPropertyDescriptor> internalStructuralPropertiesForType(PHPVersion apiLevel) { return PROPERTY_DESCRIPTORS; } }