diff options
Diffstat (limited to 'lpcode.h')
-rw-r--r-- | lpcode.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lpcode.h,v 1.6 2013/11/28 14:56:02 roberto Exp $ | 2 | ** $Id: lpcode.h,v 1.7 2015/06/12 18:24:45 roberto Exp $ |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #if !defined(lpcode_h) | 5 | #if !defined(lpcode_h) |
@@ -24,7 +24,15 @@ int sizei (const Instruction *i); | |||
24 | #define PEnullable 0 | 24 | #define PEnullable 0 |
25 | #define PEnofail 1 | 25 | #define PEnofail 1 |
26 | 26 | ||
27 | /* | ||
28 | ** nofail(t) implies that 't' cannot fail with any input | ||
29 | */ | ||
27 | #define nofail(t) checkaux(t, PEnofail) | 30 | #define nofail(t) checkaux(t, PEnofail) |
31 | |||
32 | /* | ||
33 | ** (not nullable(t)) implies 't' cannot match without consuming | ||
34 | ** something | ||
35 | */ | ||
28 | #define nullable(t) checkaux(t, PEnullable) | 36 | #define nullable(t) checkaux(t, PEnullable) |
29 | 37 | ||
30 | #define fixedlen(t) fixedlenx(t, 0, 0) | 38 | #define fixedlen(t) fixedlenx(t, 0, 0) |