Ast.OptionsSourceOptions.t stores flags that change the construction of the abstract syntax tree. Beware that the nodes that are ignored by default can differ from one version of Clang to the other.
type t = {ignore_implicit_cast : bool;Ignore implicit cast nodes in expressions. See Clang__ast.Cast for examples.
ignore_paren : bool;Ignore parenthese nodes in expressions. See Clang__ast.expr for examples.
ignore_paren_in_types : bool;Ignore parenthese nodes in types. See Clang__ast.qual_type for examples.
ignore_expr_with_cleanups : bool;ignore_materialize_temporary_expr : bool;ignore_bind_temporary_expr : bool;ignore_injected_class_names : bool;Ignore injected class name. See Clang__ast.record_decl for examples.
ignore_implicit_constructors : bool;Ignore implicit constructors. See Clang__ast.Constructor for examples.
ignore_implicit_methods : bool;Ignore implicit methods. See Clang__ast.CXXMethod for examples.
ignore_anonymous_fields : bool;Ignore anonymous fields. See Clang__ast.IndirectField for examples.
ignore_indirect_fields : bool;Ignore indirect fields. See Clang__ast.IndirectField for examples.
ignore_using_types : bool;Ignore using types (introduced in 14.0.0).
*)convert_integer_literals : bool;Convert integer literals into Clang__ast.Int. See Clang__ast.IntegerLiteral for examples.
convert_floating_literals : bool;Convert floating literals into Clang__ast.Float. See Clang__ast.FloatingLiteral for examples.
init_list_form : init_list_form;Select between default form (syntactic or semantic) for initialization lists. See Clang__ast.ImplicitValueInitExpr for examples. Default: Syntactic.
}Options.t stores flags that change the construction of the abstract syntax tree. Beware that the nodes that are ignored by default can differ from one version of Clang to the other.