summaryrefslogtreecommitdiff
path: root/src/nodes/type
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-13 14:41:10 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-13 14:41:10 +0300
commit2081a818759feeef2aa824e48c287da4cf1fbc2f (patch)
tree83bf0876335a9d4b4fae11ce717f635968842df4 /src/nodes/type
parenta4b383964ecff33e207218f34d71c69a915b8af8 (diff)
downloadparanucker-2081a818759feeef2aa824e48c287da4cf1fbc2f.tar.gz
paranucker-2081a818759feeef2aa824e48c287da4cf1fbc2f.tar.bz2
paranucker-2081a818759feeef2aa824e48c287da4cf1fbc2f.tar.xz
paranucker-2081a818759feeef2aa824e48c287da4cf1fbc2f.zip
Add parsing ARRAY_TYPE.
Diffstat (limited to 'src/nodes/type')
-rw-r--r--src/nodes/type/array_type.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/nodes/type/array_type.h b/src/nodes/type/array_type.h
new file mode 100644
index 0000000..3a5d714
--- /dev/null
+++ b/src/nodes/type/array_type.h
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) 2015 Andrei Karas
+ *
+ * This file is part of AstDumper.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NODES_TYPE_ARRAYTYPENODE_H
+#define NODES_TYPE_ARRAYTYPENODE_H
+
+#include "nodes/base/type.h"
+
+#include "nodes/cst/integer_cst.h"
+
+#include <string>
+
+struct ArrayTypeNode : public TypeNode
+{
+ ArrayTypeNode() :
+ TypeNode(),
+ domain(nullptr),
+ elementType(nullptr),
+ minIndex(nullptr),
+ maxIndex(nullptr),
+ isString(false)
+ {
+ }
+
+ TypeNode *domain;
+ TypeNode *elementType;
+ IntegerCstNode *minIndex;
+ IntegerCstNode *maxIndex;
+ bool isString;
+};
+
+#endif // NODES_TYPE_ARRAYTYPENODE_H