diff options
Diffstat (limited to 'perl_checker.src/global_checks.mli')
-rw-r--r-- | perl_checker.src/global_checks.mli | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl_checker.src/global_checks.mli b/perl_checker.src/global_checks.mli index 8fc2240..e081e48 100644 --- a/perl_checker.src/global_checks.mli +++ b/perl_checker.src/global_checks.mli @@ -3,8 +3,8 @@ open Tree type state = { per_package : (string, per_package) Hashtbl.t; - methods : (string, (pos * bool ref) list) Hashtbl.t ; - global_vars_declared : (context * string * string, pos) Hashtbl.t; + methods : (string, (pos * bool ref * prototype option) list) Hashtbl.t ; + global_vars_declared : (context * string * string, pos * prototype option) Hashtbl.t; global_vars_used : ((context * string * string) * pos) list ref; } |