You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
(*
|
|
* Copyright (c) 2013 - present Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*)
|
|
|
|
(** Define the signature of a method consisting of its name, its arguments, *)
|
|
(** return type, location and whether its an instance method. *)
|
|
|
|
type method_signature
|
|
|
|
val ms_get_name : method_signature -> Procname.t
|
|
|
|
val ms_set_name : method_signature -> Procname.t -> unit
|
|
|
|
val ms_get_args : method_signature ->
|
|
(string * Clang_ast_t.type_ptr) list
|
|
|
|
val ms_get_ret_type : method_signature -> Clang_ast_t.type_ptr
|
|
|
|
val ms_get_attributes : method_signature -> Clang_ast_t.attribute list
|
|
|
|
val ms_get_loc : method_signature -> Clang_ast_t.source_range
|
|
|
|
val ms_is_instance : method_signature -> bool
|
|
|
|
val ms_get_lang : method_signature -> CFrontend_config.lang
|
|
|
|
val ms_get_pointer_to_parent : method_signature -> Clang_ast_t.pointer option
|
|
|
|
val make_ms : Procname.t -> (string * Clang_ast_t.type_ptr) list -> Clang_ast_t.type_ptr
|
|
-> Clang_ast_t.attribute list -> Clang_ast_t.source_range -> bool -> bool -> CFrontend_config.lang
|
|
-> Clang_ast_t.pointer option -> method_signature
|
|
|
|
val replace_name_ms : method_signature -> Procname.t -> method_signature
|
|
|
|
val ms_to_string : method_signature -> string
|
|
|
|
val ms_is_generated : method_signature -> bool
|
|
|
|
val ms_objc_accessor : method_signature -> ProcAttributes.objc_accessor_type option
|
|
|
|
val ms_set_objc_accessor : method_signature -> ProcAttributes.objc_accessor_type option -> unit
|