]> git.draconx.ca Git - gob-dx.git/blob - src/tree.c
Release 0.90.1
[gob-dx.git] / src / tree.c
1 /* GOB C Preprocessor
2  * Copyright (C) 1999 the Free Software Foundation.
3  *
4  * Author: George Lebl
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the  Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19  * USA.
20  */
21
22 #include "config.h"
23 #include <glib.h>
24 #include "tree.h"
25
26 Node *
27 new_ccode(int header, GString *cbuf, int line_no)
28 {
29         CCode *node = (CCode *)g_new(Node,1);
30         node->type = CCODE_NODE;
31         node->header = header;
32         node->cbuf = cbuf;
33         node->line_no = line_no;
34         return (Node *)node;
35 }
36
37 Node *
38 new_class(char *otype, char *ptype, GList *nodes)
39 {
40         Class *node = (Class *)g_new(Node,1);
41         node->type = CLASS_NODE;
42         node->otype = otype;
43         node->ptype = ptype;
44         node->nodes = nodes;
45         return (Node *)node;
46 }
47
48 Node *
49 new_type(int stars, char *name)
50 {
51         Type *node = (Type *)g_new(Node,1);
52         node->type = TYPE_NODE;
53         node->stars = stars;
54         node->name = name;
55         return (Node *)node;
56 }
57
58 Node *
59 new_check(int chtype, char *number)
60 {
61         Check *node = (Check *)g_new(Node,1);
62         node->type = CHECK_NODE;
63         node->chtype = chtype;
64         node->number = number;
65         return (Node *)node;
66 }
67
68 Node *
69 new_funcarg(Type *atype, char *name, GList *checks)
70 {
71         FuncArg *node = (FuncArg *)g_new(Node,1);
72         node->type = FUNCARG_NODE;
73         node->atype = atype;
74         node->name = name;
75         node->checks = checks;
76         return (Node *)node;
77 }
78
79 Node *
80 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)
81 {
82         Method *node = (Method *)g_new(Node,1);
83         node->type = METHOD_NODE;
84         node->scope = scope;
85         node->mtype = mtype;
86         node->otype = otype;
87         node->gtktypes = gtktypes;
88         node->id = id;
89         node->args = args;
90         node->onerror = onerror;
91         node->cbuf = cbuf;
92         node->line_no = line_no;
93         node->ccode_line = ccode_line;
94         node->vararg = vararg;
95         return (Node *)node;
96 }
97
98 Node *
99 new_argument(char *gtktype, GList *flags, char *name, GString *get, int get_line, GString *set, int set_line, int line_no)
100 {
101         Argument *node = (Argument *)g_new(Node,1);
102         node->type = ARGUMENT_NODE;
103         node->gtktype = gtktype;
104         node->flags = flags;
105         node->name = name;
106         node->get = get;
107         node->get_line = get_line;
108         node->set = set;
109         node->set_line = set_line;
110         node->line_no = line_no;
111         return (Node *)node;
112 }
113
114 Node *
115 new_variable(int scope, Type *vtype, char *id, int line_no)
116 {
117         Variable *node = (Variable *)g_new(Node,1);
118         node->type = VARIABLE_NODE;
119         node->scope = scope;
120         node->vtype = vtype;
121         node->id = id;
122         node->line_no = line_no;
123         return (Node *)node;
124 }