summaryrefslogtreecommitdiff
path: root/src/nodes/expr
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-13 12:27:44 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-13 12:27:44 +0300
commitbd6fd0a58ef50e1fa214ad4d5c337ebaa1d7cc29 (patch)
tree40ead1dc52487f7dc50aa42c1a17b48ebf071051 /src/nodes/expr
parentcad4a8a87daed1ddaeb1a4c0905f073b548b312d (diff)
downloadparanucker-bd6fd0a58ef50e1fa214ad4d5c337ebaa1d7cc29.tar.gz
paranucker-bd6fd0a58ef50e1fa214ad4d5c337ebaa1d7cc29.tar.bz2
paranucker-bd6fd0a58ef50e1fa214ad4d5c337ebaa1d7cc29.tar.xz
paranucker-bd6fd0a58ef50e1fa214ad4d5c337ebaa1d7cc29.zip
Add parsiong node COMPONENT_REF.
Diffstat (limited to 'src/nodes/expr')
-rw-r--r--src/nodes/expr/component_ref.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/nodes/expr/component_ref.h b/src/nodes/expr/component_ref.h
new file mode 100644
index 0000000..1f39432
--- /dev/null
+++ b/src/nodes/expr/component_ref.h
@@ -0,0 +1,41 @@
+/*
+ * 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_COMPONENTREFNODE_H
+#define NODES_EXPR_COMPONENTREFNODE_H
+
+#include "nodes/base/expr.h"
+
+#include "nodes/decl/field_decl.h"
+
+#include <string>
+
+struct ComponentRefNode : public ExprNode
+{
+ ComponentRefNode() :
+ ExprNode(),
+ object(nullptr),
+ field(nullptr)
+ {
+ }
+ Node *object;
+ FieldDeclNode *field;
+};
+
+#endif // NODES_EXPR_COMPONENTREFNODE_H