diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-12 13:01:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-12 13:01:49 +0000 |
commit | 4777799c90a367acbb5ecfb8f50cbeed0e0d785f (patch) | |
tree | 9476944a7de9c2e21f8df6c5f7fd4c3c8c78e088 /perl_checker.src/parser_helper.mli | |
parent | 40557596089ef1012bf4d0e816b555e89c8d339e (diff) | |
download | perl_checker-4777799c90a367acbb5ecfb8f50cbeed0e0d785f.tar perl_checker-4777799c90a367acbb5ecfb8f50cbeed0e0d785f.tar.gz perl_checker-4777799c90a367acbb5ecfb8f50cbeed0e0d785f.tar.bz2 perl_checker-4777799c90a367acbb5ecfb8f50cbeed0e0d785f.tar.xz perl_checker-4777799c90a367acbb5ecfb8f50cbeed0e0d785f.zip |
handle ${foo} (including "${foo}bar")
Diffstat (limited to 'perl_checker.src/parser_helper.mli')
-rw-r--r-- | perl_checker.src/parser_helper.mli | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl_checker.src/parser_helper.mli b/perl_checker.src/parser_helper.mli index 7fe749d..a483a2e 100644 --- a/perl_checker.src/parser_helper.mli +++ b/perl_checker.src/parser_helper.mli @@ -7,6 +7,7 @@ val sp_pos_range : val get_pos : 'a * ('b * ('c * 'd)) -> string * 'c * 'd val var_dollar_ : Types.pos -> Types.fromparser val var_STDOUT : Types.fromparser +val split_name_or_fq_name : string -> string option * string val is_var_dollar_ : Types.fromparser -> bool val is_var_number_match : Types.fromparser -> bool val is_parenthesized : Types.fromparser -> bool @@ -97,6 +98,7 @@ val is_not_a_scalar : Types.fromparser -> bool val maybe_to_Raw_string : Types.fromparser -> Types.fromparser val to_List : Types.fromparser list -> Types.fromparser val deref_arraylen : Types.fromparser -> Types.fromparser +val deref_raw : Types.context -> Types.fromparser -> Types.fromparser val to_Ident : (string option * string) * ('a * (int * int)) -> Types.fromparser val to_Raw_string : string * ('a * (int * int)) -> Types.fromparser |