Mercurial > hg > Members > masakoha > testcode
comparison regexParser/regexParser.h @ 215:63e9224c7b2b
try to fix asterisk
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 29 Dec 2015 19:01:23 +0900 |
parents | a94f57af1600 |
children | 4dc8d327cc7d |
comparison
equal
deleted
inserted
replaced
214:a94f57af1600 | 215:63e9224c7b2b |
---|---|
72 StatePtr *stateArray; | 72 StatePtr *stateArray; |
73 TransitionGeneratorPtr tg; | 73 TransitionGeneratorPtr tg; |
74 } SCValue, *SCValuePtr; | 74 } SCValue, *SCValuePtr; |
75 | 75 |
76 typedef struct tgValue { | 76 typedef struct tgValue { |
77 bool asterisk; | 77 StatePtr asterisk; // last * state of the expression |
78 StatePtr startState; | 78 StatePtr startState; |
79 StatePtr endState; | 79 StatePtr endState; |
80 TransitionGeneratorPtr tg; | 80 TransitionGeneratorPtr tg; |
81 } TGValue, *TGValuePtr; | 81 } TGValue, *TGValuePtr; |
82 | 82 |