aboutsummaryrefslogtreecommitdiff
path: root/plugins/extraction/common.ml
diff options
context:
space:
mode:
authorPierre Letouzey2017-02-07 23:28:36 +0100
committerPierre Letouzey2017-02-07 23:28:36 +0100
commit3550120641c3b8d84290dc950e717aaf099775f9 (patch)
tree18381a0e6638a988acacce3cd51836d1641fb280 /plugins/extraction/common.ml
parentdf14dac0e6e9d9819dcc3b1601e150af7c142597 (diff)
Revert "Extraction: avoid deprecated functions of module String"
This reverts commit 69c4e7cfa0271f024b2178082e4be2e3ca3be263. String.capitalize_ascii are only available for ocaml >= 4.03, sorry...
Diffstat (limited to 'plugins/extraction/common.ml')
-rw-r--r--plugins/extraction/common.ml13
1 files changed, 5 insertions, 8 deletions
diff --git a/plugins/extraction/common.ml b/plugins/extraction/common.ml
index b93a76b966..de97ba97c3 100644
--- a/plugins/extraction/common.ml
+++ b/plugins/extraction/common.ml
@@ -92,11 +92,9 @@ let begins_with_CoqXX s =
let unquote s =
if lang () != Scheme then s
else
- let b = Bytes.of_string s in
- for i=0 to Bytes.length b - 1 do
- if Bytes.get b i == '\'' then Bytes.set b i '~'
- done;
- Bytes.to_string b
+ let s = String.copy s in
+ for i=0 to String.length s - 1 do if s.[i] == '\'' then s.[i] <- '~' done;
+ s
let rec qualify delim = function
| [] -> assert false
@@ -112,13 +110,12 @@ let pseudo_qualify = qualify "__"
let is_upper s = match s.[0] with 'A' .. 'Z' -> true | _ -> false
let is_lower s = match s.[0] with 'a' .. 'z' | '_' -> true | _ -> false
-let lowercase_id id =
- Id.of_string (String.uncapitalize_ascii (ascii_of_id id))
+let lowercase_id id = Id.of_string (String.uncapitalize (ascii_of_id id))
let uppercase_id id =
let s = ascii_of_id id in
assert (not (String.is_empty s));
if s.[0] == '_' then Id.of_string ("Coq_"^s)
- else Id.of_string (String.capitalize_ascii s)
+ else Id.of_string (String.capitalize s)
type kind = Term | Type | Cons | Mod