summaryrefslogtreecommitdiff
path: root/src/nsgenbind-ast.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-07-22 13:13:41 +0100
committerVincent Sanders <vince@kyllikki.org>2015-07-22 13:13:41 +0100
commit8bc392a91daf4cc1a27a8e6777af1a29ed24e3c4 (patch)
tree2d6b837bc51caf015a58b785ce276f024f65f3b0 /src/nsgenbind-ast.h
parent1288d8c535edd2ce29eebdc4acca6b2beab89841 (diff)
downloadnsgenbind-8bc392a91daf4cc1a27a8e6777af1a29ed24e3c4.tar.gz
nsgenbind-8bc392a91daf4cc1a27a8e6777af1a29ed24e3c4.tar.bz2
chnage binding AST to put methds inside class nodes
Diffstat (limited to 'src/nsgenbind-ast.h')
-rw-r--r--src/nsgenbind-ast.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nsgenbind-ast.h b/src/nsgenbind-ast.h
index f6800fb..e7215b1 100644
--- a/src/nsgenbind-ast.h
+++ b/src/nsgenbind-ast.h
@@ -70,6 +70,10 @@ char *genbind_strapp(char *a, char *b);
struct genbind_node *genbind_new_node(enum genbind_node_type type, struct genbind_node *l, void *r);
struct genbind_node *genbind_node_link(struct genbind_node *tgt, struct genbind_node *src);
+struct genbind_node *genbind_node_prepend(struct genbind_node *list, struct genbind_node *inst);
+
+struct genbind_node *genbind_node_add(struct genbind_node *node, struct genbind_node *list);
+
/**
* Dump the binding AST to file
*