~ubuntu-branches/ubuntu/vivid/vala/vivid

« back to all changes in this revision

Viewing changes to ccode/valaccodeinitializerlist.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-07-28 07:58:01 UTC
  • mfrom: (1.5.5 upstream) (7.3.14 experimental)
  • Revision ID: james.westby@ubuntu.com-20100728075801-18u9cg5hv5oety6m
Tags: 0.9.4-1
New upstream development release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
 
147
147
 
148
148
 
 
149
/**
 
150
 * Appends the specified expression to this initializer list.
 
151
 *
 
152
 * @param expr an expression
 
153
 */
149
154
void vala_ccode_initializer_list_append (ValaCCodeInitializerList* self, ValaCCodeExpression* expr) {
150
155
        g_return_if_fail (self != NULL);
151
156
        g_return_if_fail (expr != NULL);
219
224
}
220
225
 
221
226
 
 
227
/**
 
228
 * Represents a struct or array initializer list in the C code.
 
229
 */
222
230
GType vala_ccode_initializer_list_get_type (void) {
223
231
        static volatile gsize vala_ccode_initializer_list_type_id__volatile = 0;
224
232
        if (g_once_init_enter (&vala_ccode_initializer_list_type_id__volatile)) {