X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Fparser.re;h=13d6484fa3682fd9b0176b57d21ec96c6cc595e2;hp=0bca5b09aca87938a0645828ec222b70e1d1aca6;hb=bcd9e150292290ce2951fdca61fad526c478e787;hpb=22b4a95d8fd6525e4539f843ba5bebb9a56e89f2 diff --git a/src/parser.re b/src/parser.re index 0bca5b0..13d6484 100644 --- a/src/parser.re +++ b/src/parser.re @@ -214,6 +214,7 @@ token_t PSI_ParserScan(PSI_Parser *P) INTVAL = 'intval'; FLOATVAL = 'floatval'; BOOLVAL = 'boolval'; + ARRVAL = 'arrval'; CALLOC = 'calloc'; TO_ARRAY = 'to_array'; TO_STRING = 'to_string'; @@ -275,6 +276,7 @@ token_t PSI_ParserScan(PSI_Parser *P) INTVAL {RETURN(PSI_T_INTVAL);} FLOATVAL {RETURN(PSI_T_FLOATVAL);} BOOLVAL {RETURN(PSI_T_BOOLVAL);} + ARRVAL {RETURN(PSI_T_ARRVAL);} CALLOC {RETURN(PSI_T_CALLOC);} TO_ARRAY {RETURN(PSI_T_TO_ARRAY);} TO_STRING {RETURN(PSI_T_TO_STRING);}