summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/types.mli
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-11-24 00:07:31 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-11-24 00:07:31 +0000
commit89de208360b9022db207e1af37bbae992f45002b (patch)
tree5248de006e1270590407c7096437f616a83d2733 /perl_checker.src/types.mli
parent131207a1f99f85d2b8d272e7b47b058076b5c1cf (diff)
downloadperl_checker-89de208360b9022db207e1af37bbae992f45002b.tar
perl_checker-89de208360b9022db207e1af37bbae992f45002b.tar.gz
perl_checker-89de208360b9022db207e1af37bbae992f45002b.tar.bz2
perl_checker-89de208360b9022db207e1af37bbae992f45002b.tar.xz
perl_checker-89de208360b9022db207e1af37bbae992f45002b.zip
*** empty log message ***
Diffstat (limited to 'perl_checker.src/types.mli')
-rw-r--r--perl_checker.src/types.mli11
1 files changed, 6 insertions, 5 deletions
diff --git a/perl_checker.src/types.mli b/perl_checker.src/types.mli
index ceb5804..d11ff9a 100644
--- a/perl_checker.src/types.mli
+++ b/perl_checker.src/types.mli
@@ -11,9 +11,10 @@ type spaces =
| Space_cr
| Space_none
-type context = I_scalar | I_hash | I_array | I_func | I_raw | I_star | I_arraylen
+type context = I_scalar | I_hash | I_array | I_func | I_raw | I_star
type fromparser =
+ | Undef
| Ident of string option * string * pos
| Num of string * pos
| Raw_string of string * pos
@@ -36,13 +37,13 @@ type fromparser =
| Method_call of fromparser * fromparser * fromparser list
| Method_callP of fromparser * fromparser * fromparser list
- | Anonymous_sub of fromparser list
- | My of fromparser
- | Local of fromparser
+ | Anonymous_sub of fromparser
+ | My_our of string * (context * string) list * pos
| Use of fromparser * fromparser list
- | Sub_declaration of fromparser * string * fromparser list (* name, prototype, body *)
+ | Sub_declaration of fromparser * string * fromparser (* name, prototype, body *)
| Package of fromparser
| Label of string
+ | Perl_checker_comment of string * pos
| Too_complex
| Semi_colon