X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fparser.re;h=df2d102716025b9df8dcab16634eec88d51a333a;hb=f15288e185e65bcdfde87c217fb6bd7ff12eb653;hp=1b2aae7e550498ee554b39dff8ad2459dc192201;hpb=e11280a7b6ed67a4d79b14569ca06131ea2338bd;p=m6w6%2Fext-psi diff --git a/src/parser.re b/src/parser.re index 1b2aae7..df2d102 100644 --- a/src/parser.re +++ b/src/parser.re @@ -316,6 +316,8 @@ token_t psi_parser_scan(struct psi_parser *P) 'LIB' {RETURN(PSI_T_LIB);} 'LET' {RETURN(PSI_T_LET);} 'SET' {RETURN(PSI_T_SET);} + 'PRE_ASSERT' {RETURN(PSI_T_PRE_ASSERT);} + 'POST_ASSERT' {RETURN(PSI_T_POST_ASSERT);} 'RETURN' {RETURN(PSI_T_RETURN);} 'FREE' {RETURN(PSI_T_FREE);} 'TEMP' {RETURN(PSI_T_TEMP);}