Add the AttributeTag constructor to AST0 of SmPL. Signed-off-by: Jaskaran Singh <[email protected]> --- parsing_cocci/ast0_cocci.ml | 2 ++ parsing_cocci/ast0_cocci.mli | 1 + 2 files changed, 3 insertions(+)
diff --git a/parsing_cocci/ast0_cocci.ml b/parsing_cocci/ast0_cocci.ml index bfc0d145..d7d81001 100644 --- a/parsing_cocci/ast0_cocci.ml +++ b/parsing_cocci/ast0_cocci.ml @@ -577,6 +577,7 @@ and anything = | ForInfoTag of forinfo | CaseLineTag of case_line | StringFragmentTag of string_fragment + | AttributeTag of attr | TopTag of top_level | IsoWhenTag of Ast.when_modifier | IsoWhenTTag of expression @@ -608,6 +609,7 @@ let stmt x = StmtTag x let forinfo x = ForInfoTag x let case_line x = CaseLineTag x let string_fragment x = StringFragmentTag x +let attr x = AttributeTag x let top x = TopTag x let enum_decl x = EnumDeclTag x diff --git a/parsing_cocci/ast0_cocci.mli b/parsing_cocci/ast0_cocci.mli index 20d6e40c..c4b9260b 100644 --- a/parsing_cocci/ast0_cocci.mli +++ b/parsing_cocci/ast0_cocci.mli @@ -566,6 +566,7 @@ and anything = | ForInfoTag of forinfo | CaseLineTag of case_line | StringFragmentTag of string_fragment + | AttributeTag of attr | TopTag of top_level | IsoWhenTag of Ast_cocci.when_modifier (*only for when code, in iso phase*) | IsoWhenTTag of expression(*only for when code, in iso phase*) -- 2.21.3 _______________________________________________ Cocci mailing list [email protected] https://systeme.lip6.fr/mailman/listinfo/cocci
