summaryrefslogtreecommitdiffstats
path: root/tools/csl2ocaml
diff options
context:
space:
mode:
Diffstat (limited to 'tools/csl2ocaml')
-rwxr-xr-xtools/csl2ocaml21
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/csl2ocaml b/tools/csl2ocaml
deleted file mode 100755
index 66315e7e9..000000000
--- a/tools/csl2ocaml
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/local/bin/perl -pi.bak
-
-# Conversion of Caml Special Light source files to Objective Caml.
-# Rename library functions that have changed names and warn
-# for identifiers that are now keywords.
-# Transforms the file(s) in place. The old source is left in a file
-# with extension .bak
-
-s/Array\.new/Array.create/g;
-s/Array\.new_matrix/Array.create_matrix/g;
-s/Hashtbl\.new/Hashtbl.create/g;
-s/Queue\.new/Queue.create/g;
-s/Stack\.new/Stack.create/g;
-s/Thread\.new/Thread.create/g;
-s/Mutex\.new/Mutex.create/g;
-s/Condition\.new/Condition.create/g;
-
-if (/\b(class|closed|constraint|inherit|method|new|private|virtual)\b/) {
- print STDERR "$ARGV:$.: `$1' is now a keyword\n";
-}
-