/* valainitializerlist.vala * * Copyright (C) 2006-2007 Jürg Billeter, Raffaele Sandrini * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Author: * Jürg Billeter * Raffaele Sandrini */ using GLib; using Gee; /** * Represents an array or struct initializer list in the source code. */ public class Vala.InitializerList : Expression { private Gee.List initializers = new ArrayList (); /** * Appends the specified expression to this initializer list. * * @param expr an expression */ public void append (Expression! expr) { initializers.add (expr); } /** * Returns a copy of the expression list. * * @return expression list */ public Collection get_initializers () { return new ReadOnlyCollection (initializers); } /** * Returns the initializer count in this initializer list. */ public int size { get { return initializers.size; } } /** * Creates a new initializer list. * * @param source_reference reference to source code * @return newly created initializer list */ public InitializerList (construct SourceReference source_reference) { } public override void accept_children (CodeVisitor! visitor) { foreach (Expression expr in initializers) { expr.accept (visitor); } } public override void accept (CodeVisitor! visitor) { visitor.visit_initializer_list (this); } public override bool is_pure () { foreach (Expression initializer in initializers) { if (!initializer.is_pure ()) { return false; } } return true; } }