summaryrefslogtreecommitdiff
path: root/src/nodes
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-08 15:08:03 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-08 15:08:03 +0300
commitb9e7b30f30fbb0237887d0d962b147dc9a0c74c2 (patch)
treee19c095f08e83bc6132338f01b171990c76b503c /src/nodes
parent6774a295aa3b2d3ceb63b503e694f0ffa9b806a5 (diff)
downloadparanucker-b9e7b30f30fbb0237887d0d962b147dc9a0c74c2.tar.gz
paranucker-b9e7b30f30fbb0237887d0d962b147dc9a0c74c2.tar.bz2
paranucker-b9e7b30f30fbb0237887d0d962b147dc9a0c74c2.tar.xz
paranucker-b9e7b30f30fbb0237887d0d962b147dc9a0c74c2.zip
Add parsing node INDIRECT_REF.
Diffstat (limited to 'src/nodes')
-rw-r--r--src/nodes/expr/indirect_ref.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/expr/indirect_ref.h b/src/nodes/expr/indirect_ref.h
new file mode 100644
index 0000000..6a33f88
--- /dev/null
+++ b/src/nodes/expr/indirect_ref.h
@@ -0,0 +1,35 @@
+/*
+ * 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_EXPR_INDIRECTREFNODE_H
+#define NODES_EXPR_INDIRECTREFNODE_H
+
+#include "nodes/base/expr.h"
+
+#include <string>
+
+struct IndirectRefNode : public ExprNode
+{
+ IndirectRefNode() :
+ ExprNode()
+ {
+ }
+};
+
+#endif // NODES_EXPR_INDIRECTREFNODE_H