summaryrefslogtreecommitdiff
path: root/src/nodes
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-13 17:04:00 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-13 17:04:00 +0300
commite6fef2dabcab47f08176828aa753de673bd27b11 (patch)
tree8216398d30d95928c8133c84baea7b763b613390 /src/nodes
parent29888f1893c82c29d6aa1e5045625cdf7a73ba18 (diff)
downloadparanucker-e6fef2dabcab47f08176828aa753de673bd27b11.tar.gz
paranucker-e6fef2dabcab47f08176828aa753de673bd27b11.tar.bz2
paranucker-e6fef2dabcab47f08176828aa753de673bd27b11.tar.xz
paranucker-e6fef2dabcab47f08176828aa753de673bd27b11.zip
Add parsing node STRING_CST.
Diffstat (limited to 'src/nodes')
-rw-r--r--src/nodes/cst/string_cst.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/nodes/cst/string_cst.h b/src/nodes/cst/string_cst.h
new file mode 100644
index 0000000..87bddf4
--- /dev/null
+++ b/src/nodes/cst/string_cst.h
@@ -0,0 +1,38 @@
+/*
+ * 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_CST_STRINGCSTNODE_H
+#define NODES_CST_STRINGCSTNODE_H
+
+#include "nodes/base/cst.h"
+
+#include <string>
+
+struct StringCstNode : public CstNode
+{
+ StringCstNode() :
+ CstNode(),
+ stringLength(0)
+ {
+ }
+
+ int stringLength;
+};
+
+#endif // NODES_CST_STRINGCSTNODE_H