summaryrefslogtreecommitdiff
path: root/src/includes
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-12 17:10:43 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-12 17:10:43 +0300
commit5523103f7f9d0331c65b3c931533519d2d18c838 (patch)
tree526257773105c5a6b426fd916def6d31c6b02758 /src/includes
parent935220297043e59853d54697bdf51c96ac1d1812 (diff)
downloadparanucker-5523103f7f9d0331c65b3c931533519d2d18c838.tar.gz
paranucker-5523103f7f9d0331c65b3c931533519d2d18c838.tar.bz2
paranucker-5523103f7f9d0331c65b3c931533519d2d18c838.tar.xz
paranucker-5523103f7f9d0331c65b3c931533519d2d18c838.zip
Add parsing node FIELD_DECL.
Diffstat (limited to 'src/includes')
-rw-r--r--src/includes/nodeincludes.h1
-rw-r--r--src/includes/nodeshandling.inc1
-rw-r--r--src/includes/parserdefines.inc1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/includes/nodeincludes.h b/src/includes/nodeincludes.h
index b83d3c8..8f34475 100644
--- a/src/includes/nodeincludes.h
+++ b/src/includes/nodeincludes.h
@@ -44,3 +44,4 @@
#include "nodes/type/record_type.h"
#include "nodes/expr/target_expr.h"
#include "nodes/block/ehspec_block.h"
+#include "nodes/decl/field_decl.h"
diff --git a/src/includes/nodeshandling.inc b/src/includes/nodeshandling.inc
index 4fb4b33..b649c05 100644
--- a/src/includes/nodeshandling.inc
+++ b/src/includes/nodeshandling.inc
@@ -43,3 +43,4 @@ handleNodeType(NULLPTR_TYPE, NullPtrType)
handleNodeType(RECORD_TYPE, RecordType)
handleNodeType(TARGET_EXPR, TargetExpr)
handleNodeType(EH_SPEC_BLOCK, EhSpecBlock)
+handleNodeType(FIELD_DECL, FieldDecl)
diff --git a/src/includes/parserdefines.inc b/src/includes/parserdefines.inc
index 782a6c3..907c211 100644
--- a/src/includes/parserdefines.inc
+++ b/src/includes/parserdefines.inc
@@ -43,3 +43,4 @@ parserDefine(NullPtrType);
parserDefine(RecordType);
parserDefine(TargetExpr);
parserDefine(EhSpecBlock);
+parserDefine(FieldDecl);