]> git.draconx.ca Git - gob-dx.git/blobdiff - src/tree.c
Release 0.90.0
[gob-dx.git] / src / tree.c
index a68b97438957404bd5b949e5775fd87f7d544796..279180a5dc30311b9aa95f038706b28118dd6afe 100644 (file)
@@ -95,7 +95,7 @@ new_method(int scope, Type *mtype, char *otype, GList *gtktypes, char *id, GList
 }
 
 Node *
-new_argument(char *gtktype, GList *flags, char *name, GString *get, int get_line, GString *set, int set_line)
+new_argument(char *gtktype, GList *flags, char *name, GString *get, int get_line, GString *set, int set_line, int line_no)
 {
        Argument *node = (Argument *)g_new(Node,1);
        node->type = ARGUMENT_NODE;
@@ -106,16 +106,18 @@ new_argument(char *gtktype, GList *flags, char *name, GString *get, int get_line
        node->get_line = get_line;
        node->set = set;
        node->set_line = set_line;
+       node->line_no = line_no;
        return (Node *)node;
 }
 
 Node *
-new_variable(int scope, Type *vtype, char *id)
+new_variable(int scope, Type *vtype, char *id, int line_no)
 {
        Variable *node = (Variable *)g_new(Node,1);
        node->type = VARIABLE_NODE;
        node->scope = scope;
        node->vtype = vtype;
        node->id = id;
+       node->line_no = line_no;
        return (Node *)node;
 }