summaryrefslogtreecommitdiff
path: root/colm/parsetree.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2013-02-24 15:53:02 -0500
committerAdrian Thurston <thurston@complang.org>2013-02-24 15:53:02 -0500
commitf996b3232a49b5d8c8f883f8135ed3f08caccebf (patch)
tree1239f3e389c80ef613885f7f79765b23791ef517 /colm/parsetree.h
parente03dc8195edc4a6eee99c3841321c0e2d6aeca99 (diff)
downloadcolm-f996b3232a49b5d8c8f883f8135ed3f08caccebf.tar.gz
removed the noPreIgnore and noPostIgnore vars from instance
Using the vars from TokenDef.
Diffstat (limited to 'colm/parsetree.h')
-rw-r--r--colm/parsetree.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/colm/parsetree.h b/colm/parsetree.h
index 91d25300..be99529c 100644
--- a/colm/parsetree.h
+++ b/colm/parsetree.h
@@ -454,8 +454,9 @@ struct TokenInstance
{
TokenInstance()
:
- action(0), tdLangEl(0), inLmSelect(false), dupOf(0),
- noPostIgnore(false), noPreIgnore(false), isZero(false)
+ action(0), tdLangEl(0), inLmSelect(false),
+ dupOf(0),
+ isZero(false)
{}
static TokenInstance *cons( TokenDef *tokenDef, const String &name,
@@ -483,8 +484,6 @@ struct TokenInstance
t->objectDef = objectDef;
t->contextIn = contextIn;
t->dupOf = 0;
- t->noPostIgnore = false;
- t->noPreIgnore = false;
t->isZero = false;
if ( pReCaptureVect != 0 )
@@ -519,8 +518,6 @@ struct TokenInstance
Context *contextIn;
TokenInstance *dupOf;
- bool noPostIgnore;
- bool noPreIgnore;
bool isZero;
};