summaryrefslogtreecommitdiff
path: root/src/webidl-ast.h
diff options
context:
space:
mode:
authorVincent Sanders <vincent.sanders@collabora.co.uk>2012-09-25 18:51:04 +0100
committerVincent Sanders <vincent.sanders@collabora.co.uk>2012-09-25 18:51:04 +0100
commit74ea37fbd83a0d381ae928c7f7e30d0ded875cc0 (patch)
treea76ebefbf29a11c1e4620567b1dd7cadc0765a5e /src/webidl-ast.h
parent4b043613d1a20980b13a6e9b0c8a7ff91c035b2f (diff)
downloadnsgenbind-74ea37fbd83a0d381ae928c7f7e30d0ded875cc0.tar.gz
nsgenbind-74ea37fbd83a0d381ae928c7f7e30d0ded875cc0.tar.bz2
put return type in argument list so we can have multiple prototypes per operation (method)
Diffstat (limited to 'src/webidl-ast.h')
-rw-r--r--src/webidl-ast.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webidl-ast.h b/src/webidl-ast.h
index c41149d..ac3586f 100644
--- a/src/webidl-ast.h
+++ b/src/webidl-ast.h
@@ -13,7 +13,7 @@ enum webidl_node_type {
WEBIDL_NODE_TYPE_ROOT = 0,
WEBIDL_NODE_TYPE_IDENT,
WEBIDL_NODE_TYPE_INTERFACE,
- WEBIDL_NODE_TYPE_INTERFACE_MEMBERS,
+ WEBIDL_NODE_TYPE_LIST, /* a list of nodes (interface members, arguments) */
WEBIDL_NODE_TYPE_INTERFACE_INHERITANCE,
WEBIDL_NODE_TYPE_ATTRIBUTE,
WEBIDL_NODE_TYPE_OPERATION,