]> git.draconx.ca Git - gob-dx.git/blobdiff - src/tree.h
Release 0.90.1
[gob-dx.git] / src / tree.h
index caef602d51eb10280b10ed2acd0448ec2ddf79e3..5df83d9202fb334832c871582819c088d279f868 100644 (file)
@@ -124,6 +124,7 @@ struct _Method {
        GString *cbuf;
        int line_no;
        int ccode_line;
+       int vararg;
 };
 
 typedef struct _Variable Variable;
@@ -151,7 +152,7 @@ Node *new_class(char *otype, char *ptype, GList *nodes);
 Node *new_type(int stars, char *name);
 Node *new_check(int chtype, char *number);
 Node *new_funcarg(Type *atype, char *name, GList *checks);
-Node *new_method(int scope, Type *mtype, char *otype, GList *gtktypes, char *id, GList *args, char *onerror, GString *cbuf,int line_no,int ccode_line);
+Node *new_method(int scope, Type *mtype, char *otype, GList *gtktypes, char *id, GList *args, char *onerror, GString *cbuf,int line_no,int ccode_line, int vararg);
 Node *new_argument(char *gtktype, GList *flags, char *name, GString *get, int get_line, GString *set, int set_line, int line_no);
 Node *new_variable(int scope, Type *vtype, char *id,int line_no);