ParenType and FunctionType are now added to the SmPL ASTs. Add cases for these types in index.ml.
Signed-off-by: Jaskaran Singh <[email protected]> --- parsing_cocci/index.ml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/parsing_cocci/index.ml b/parsing_cocci/index.ml index a1103503..088db18a 100644 --- a/parsing_cocci/index.ml +++ b/parsing_cocci/index.ml @@ -6,7 +6,7 @@ (* create an index for each constructor *) (* current max is 188, also unused: 8-9, 15, 39, 40, 42, 46, 57, 65, 85-86, - 113-115, 138-140, 162 *) + 113-115, 140, 162 *) (* doesn't really work - requires that identical terms with no token subterms (eg dots) not appear on the same line *) @@ -93,6 +93,8 @@ let typeC t = | Ast0.Signed(sign,ty) -> [129] | Ast0.Pointer(ty,star) -> [49] | Ast0.FunctionPointer(ty,lp1,star,rp1,lp2,params,rp2) -> [131] + | Ast0.ParenType(lp,ty,rp) -> [138] + | Ast0.FunctionType(ty,lp,params,rp) -> [139] | Ast0.Array(ty,lb,size,rb) -> [50] | Ast0.Decimal(dec,lp,length,comma,precision_opt,rp) -> [160] | Ast0.EnumName(kind,name) -> [146] -- 2.21.1 _______________________________________________ Cocci mailing list [email protected] https://systeme.lip6.fr/mailman/listinfo/cocci
