update for 0.4.0 release
[vala-lang.git] / ccode / valaccodefunctioncall.vala
blobe5141f04427f93e4cdd07638275bce91e1e5b652
1 /* valaccodefunctioncall.vala
3 * Copyright (C) 2006-2007 Jürg Billeter
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 * Author:
20 * Jürg Billeter <j@bitron.ch>
23 using GLib;
24 using Gee;
26 /**
27 * Represents a function call in the C code.
29 public class Vala.CCodeFunctionCall : CCodeExpression {
30 /**
31 * The function to be called.
33 public CCodeExpression? call { get; set; }
35 private Gee.List<CCodeExpression> arguments = new ArrayList<CCodeExpression> ();
37 public CCodeFunctionCall (CCodeExpression? call = null) {
38 this.call = call;
41 /**
42 * Appends the specified expression to the list of arguments.
44 * @param expr a C code expression
46 public void add_argument (CCodeExpression expr) {
47 arguments.add (expr);
50 /**
51 * Returns a copy of the list of arguments.
53 * @return list of arguments
55 public Gee.List<CCodeExpression> get_arguments () {
56 return new ReadOnlyList<CCodeExpression> (arguments);
59 public override void write (CCodeWriter writer) {
60 call.write (writer);
61 writer.write_string (" (");
63 bool first = true;
64 foreach (CCodeExpression expr in arguments) {
65 if (!first) {
66 writer.write_string (", ");
67 } else {
68 first = false;
71 if (expr != null) {
72 expr.write (writer);
76 writer.write_string (")");