Skip to content
Snippets Groups Projects
Commit d4a172f3 authored by Julien Signoles's avatar Julien Signoles
Browse files

lint

parent 8b037136
No related branches found
No related tags found
No related merge requests found
...@@ -106,15 +106,15 @@ module Functions: sig ...@@ -106,15 +106,15 @@ module Functions: sig
(** {2 Membership} *) (** {2 Membership} *)
val mem_name: string -> bool val mem_name: string -> bool
(** @return true iff there is a function with such a name (** @return [true] iff there is a function with such a name
@since Frama-C+dev *) @since Frama-C+dev *)
val mem_def_name: string -> bool val mem_def_name: string -> bool
(** @return true iff there is a function definition with such a name (** @return [true] iff there is a function definition with such a name
@since Frama-C+dev *) @since Frama-C+dev *)
val mem_decl_name: string -> bool val mem_decl_name: string -> bool
(** @return true iff there is a function declaration with such a name (** @return [true] iff there is a function declaration with such a name
@since Frama-C+dev *) @since Frama-C+dev *)
(** {2 Searching} *) (** {2 Searching} *)
...@@ -234,18 +234,18 @@ module Types : sig ...@@ -234,18 +234,18 @@ module Types : sig
{!Logic_typing.Make} *) {!Logic_typing.Make} *)
val mem_enum_tag: string -> bool val mem_enum_tag: string -> bool
(** @return true iff there is an enum constant with the given name in the (** @return [true] iff there is an enum constant with the given name in the
AST. AST.
@since Frama-C+dev *) @since Frama-C+dev *)
val find_enum_tag: string -> exp * typ val find_enum_tag: string -> exp * typ
(** Find an enum constant from its name in the AST. (** Find an enum constant from its name in the AST.
@raise Not_found when no such constant exists. *) @raise Not_found when no such constant exists. *)
val mem_type: Logic_typing.type_namespace -> string -> bool val mem_type: Logic_typing.type_namespace -> string -> bool
(** @return true iff there is a type with the given name in the given (** @return [true] iff there is a type with the given name in the given
namespace in the AST. namespace in the AST.
@since Frama-C+dev *) @since Frama-C+dev *)
val find_type: Logic_typing.type_namespace -> string -> typ val find_type: Logic_typing.type_namespace -> string -> typ
(** Find a type from its name in the AST. (** Find a type from its name in the AST.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment