diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2002-06-27 12:20:42 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2002-06-27 12:20:42 +0000 |
commit | c9cb93a847e3e78e1ae6cbcf4701fe66ca72771d (patch) | |
tree | fb07969d5ee901a62bd505484a369212cfa737f6 /debugger/debugger_config.ml | |
parent | 3932ce26517c08de401563a3a76199feb9966c99 (diff) | |
download | ocaml-c9cb93a847e3e78e1ae6cbcf4701fe66ca72771d.tar.gz |
MAJ liste stdlib_units
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4962 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'debugger/debugger_config.ml')
-rw-r--r-- | debugger/debugger_config.ml | 49 |
1 files changed, 42 insertions, 7 deletions
diff --git a/debugger/debugger_config.ml b/debugger/debugger_config.ml index d2140704ee..2da795dfaf 100644 --- a/debugger/debugger_config.ml +++ b/debugger/debugger_config.ml @@ -76,11 +76,46 @@ let make_checkpoints = ref true (* List of standard library modules *) let stdlib_units = [ - "Pervasives"; "List"; "Char"; "String"; "Array"; "Sys"; - "Hashtbl"; "Sort"; "Marshal"; "Obj"; "Lexing"; "Parsing"; - "Set"; "Map"; "Stack"; "Queue"; "Stream"; - "Buffer"; "Printf"; "Format"; "Arg"; "Printexc"; "Gc"; - "Digest"; "Random"; "Oo"; "Genlex"; "Callback"; "Weak"; - "Lazy"; "Filename"; "Int32"; "Int64"; "Nativeint"; - "Unix" + "Arg"; + "Array"; + "ArrayLabels"; + "Buffer"; + "Callback"; + "CamlinternalOO"; + "Char"; + "Complex"; + "Digest"; + "Filename"; + "Format"; + "Gc"; + "Genlex"; + "Hashtbl"; + "Int32"; + "Int64"; + "Lazy"; + "Lexing"; + "List"; + "ListLabels"; + "Map"; + "Marshal"; + "MoreLabels"; + "Nativeint"; + "Obj"; + "Oo"; + "Parsing"; + "Pervasives"; + "Printexc"; + "Printf"; + "Queue"; + "Random"; + "Scanf"; + "Set"; + "Sort"; + "Stack"; + "StdLabels"; + "Stream"; + "String"; + "StringLabels"; + "Sys"; + "Weak" ] |