aboutsummaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authorShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-07-05 14:18:15 +0900
committerShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-07-05 14:18:15 +0900
commit631a9f83ffa25074612d53c8b32c771401264f2d (patch)
treecd8bbb632420a3f17e0c96272137143724ca2ba4 /ast.h
parent10612c238c68dd076d66c755be2fe8d1a30a0196 (diff)
downloadkati-631a9f83ffa25074612d53c8b32c771401264f2d.tar.gz
[C++] Re-parse command when it turns out it is not actually a command
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ast.h b/ast.h
index 611b529..876d7d3 100644
--- a/ast.h
+++ b/ast.h
@@ -94,6 +94,7 @@ struct AssignAST : public AST {
struct CommandAST : public AST {
Value* expr;
+ StringPiece orig;
virtual ~CommandAST();