From b29ff13b599730bf3eaec8f142e584f23e78c1fb Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 27 Nov 2012 12:18:40 +0000 Subject: add type suffix annotations to webidl AST --- src/webidl-ast.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/webidl-ast.c') diff --git a/src/webidl-ast.c b/src/webidl-ast.c index ba9d44f..7957f02 100644 --- a/src/webidl-ast.c +++ b/src/webidl-ast.c @@ -317,6 +317,12 @@ static const char *webidl_node_type_to_str(enum webidl_node_type type) case WEBIDL_NODE_TYPE_TYPE_BASE: return "Base"; + case WEBIDL_NODE_TYPE_TYPE_NULLABLE: + return "Nullable"; + + case WEBIDL_NODE_TYPE_TYPE_ARRAY: + return "Array"; + case WEBIDL_NODE_TYPE_MODIFIER: return "Modifier"; -- cgit v1.2.3