| author | huffman | 
| Wed, 28 Apr 2010 15:07:03 -0700 | |
| changeset 36582 | 352213b24ced | 
| parent 32776 | 1504f9c2d060 | 
| permissions | -rw-r--r-- | 
| 21653 | 1 | (* Title: Pure/ML-Systems/polyml-5.0.ML | 
| 2 | ||
| 3 | Compatibility wrapper for Poly/ML 5.0. | |
| 4 | *) | |
| 5 | ||
| 31427 
5a07cc86675d
reraise exceptions to preserve original position (ML system specific);
 wenzelm parents: 
31313diff
changeset | 6 | fun reraise exn = raise exn; | 
| 
5a07cc86675d
reraise exceptions to preserve original position (ML system specific);
 wenzelm parents: 
31313diff
changeset | 7 | |
| 32776 
1504f9c2d060
more uniform treatment of structure Unsynchronized in ML bootstrap phase;
 wenzelm parents: 
31427diff
changeset | 8 | use "ML-Systems/unsynchronized.ML"; | 
| 28151 
61f9c918b410
explicit use of universal.ML and dummy_thread.ML;
 wenzelm parents: 
26378diff
changeset | 9 | use "ML-Systems/universal.ML"; | 
| 
61f9c918b410
explicit use of universal.ML and dummy_thread.ML;
 wenzelm parents: 
26378diff
changeset | 10 | use "ML-Systems/thread_dummy.ML"; | 
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30627diff
changeset | 11 | use "ML-Systems/ml_name_space.ML"; | 
| 26215 
94d32a7cd0fb
rearrangements to make latest Poly/ML the default, not old 4.x;
 wenzelm parents: 
24605diff
changeset | 12 | use "ML-Systems/polyml_common.ML"; | 
| 31312 | 13 | use "ML-Systems/compiler_polyml-5.0.ML"; | 
| 31313 | 14 | use "ML-Systems/pp_polyml.ML"; | 
| 21653 | 15 | |
| 16 | val pointer_eq = PolyML.pointerEq; | |
| 21771 
148c8aba89dd
added improved versions of use_text/file (still inactive);
 wenzelm parents: 
21653diff
changeset | 17 | |
| 29638 
1f8f3d26a2cf
added share_common_data -- reduces heap space, but takes long;
 wenzelm parents: 
29564diff
changeset | 18 | fun share_common_data () = PolyML.shareCommonData PolyML.rootFunction; | 
| 
1f8f3d26a2cf
added share_common_data -- reduces heap space, but takes long;
 wenzelm parents: 
29564diff
changeset | 19 |