@@ -6906,7 +6906,7 @@ val equal : Ident.t -> Ident.t -> bool
6906
6906
end = struct
6907
6907
#1 "ext_ident.ml"
6908
6908
(* Copyright (C) 2015-2016 Bloomberg Finance L.P.
6909
- *
6909
+ *
6910
6910
* This program is free software: you can redistribute it and/or modify
6911
6911
* it under the terms of the GNU Lesser General Public License as published by
6912
6912
* the Free Software Foundation, either version 3 of the License, or
@@ -6924,7 +6924,7 @@ end = struct
6924
6924
* but WITHOUT ANY WARRANTY; without even the implied warranty of
6925
6925
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
6926
6926
* GNU Lesser General Public License for more details.
6927
- *
6927
+ *
6928
6928
* You should have received a copy of the GNU Lesser General Public License
6929
6929
* along with this program; if not, write to the Free Software
6930
6930
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
@@ -6948,32 +6948,32 @@ let js_flag = 0b1_000 (* check with ocaml compiler *)
6948
6948
*)
6949
6949
let js_object_flag = 0b100_000 (* javascript object flags *)
6950
6950
6951
- let is_js (i : Ident.t) =
6952
- i.flags land js_flag <> 0
6951
+ let is_js (i : Ident.t) =
6952
+ i.flags land js_flag <> 0
6953
6953
6954
- let is_js_or_global (i : Ident.t) =
6955
- i.flags land (8 lor 1) <> 0
6954
+ let is_js_or_global (i : Ident.t) =
6955
+ i.flags land (8 lor 1) <> 0
6956
6956
6957
6957
6958
- let is_js_object (i : Ident.t) =
6959
- i.flags land js_object_flag <> 0
6958
+ let is_js_object (i : Ident.t) =
6959
+ i.flags land js_object_flag <> 0
6960
6960
6961
- let make_js_object (i : Ident.t) =
6962
- i.flags <- i.flags lor js_object_flag
6961
+ let make_js_object (i : Ident.t) =
6962
+ i.flags <- i.flags lor js_object_flag
6963
6963
6964
6964
(* It's a js function hard coded by js api, so when printing,
6965
- it should preserve the name
6965
+ it should preserve the name
6966
6966
*)
6967
- let create_js (name : string) : Ident.t =
6967
+ let create_js (name : string) : Ident.t =
6968
6968
{ name = name; flags = js_flag ; stamp = 0}
6969
6969
6970
6970
let create = Ident.create
6971
6971
6972
6972
(* FIXME: no need for `$' operator *)
6973
- let create_tmp ?(name=Literals.tmp) () = create name
6973
+ let create_tmp ?(name=Literals.tmp) () = create name
6974
6974
6975
6975
6976
- let js_module_table : Ident.t String_hashtbl.t = String_hashtbl.create 31
6976
+ let js_module_table : Ident.t String_hashtbl.t = String_hashtbl.create 31
6977
6977
6978
6978
(* This is for a js exeternal module, we can change it when printing
6979
6979
for example
@@ -6984,25 +6984,25 @@ let js_module_table : Ident.t String_hashtbl.t = String_hashtbl.create 31
6984
6984
6985
6985
Given a name, if duplicated, they should have the same id
6986
6986
*)
6987
- let create_js_module (name : string) : Ident.t =
6988
- let name =
6989
- String.concat "" @@ Ext_list.map (Ext_string.capitalize_ascii ) @@
6987
+ let create_js_module (name : string) : Ident.t =
6988
+ let name =
6989
+ String.concat "" @@ Ext_list.map (Ext_string.capitalize_ascii ) @@
6990
6990
Ext_string.split name '-' in
6991
6991
(* TODO: if we do such transformation, we should avoid collision for example:
6992
- react-dom
6992
+ react-dom
6993
6993
react--dom
6994
6994
check collision later
6995
6995
*)
6996
- match String_hashtbl.find_exn js_module_table name with
6997
- | exception Not_found ->
6996
+ match String_hashtbl.find_exn js_module_table name with
6997
+ | exception Not_found ->
6998
6998
let ans = Ident.create name in
6999
6999
(* let ans = { v with flags = js_module_flag} in *)
7000
7000
String_hashtbl.add js_module_table name ans;
7001
7001
ans
7002
- | v -> (* v *) Ident.rename v
7002
+ | v -> (* v *) Ident.rename v
7003
7003
7004
7004
7005
- let reserved_words =
7005
+ let reserved_words =
7006
7006
[|
7007
7007
(* keywork *)
7008
7008
"break";
@@ -7039,7 +7039,7 @@ let reserved_words =
7039
7039
(* also reserved in ECMAScript 3 *)
7040
7040
"abstract"; "boolean"; "byte"; "char"; "const"; "double";
7041
7041
"final"; "float"; "goto"; "int"; "long"; "native"; "short";
7042
- "synchronized";
7042
+ "synchronized";
7043
7043
(* "throws"; *)
7044
7044
(* seems to be fine, like nodejs [assert.throws] *)
7045
7045
"transient"; "volatile";
@@ -7064,7 +7064,7 @@ let reserved_words =
7064
7064
"String";
7065
7065
"Boolean";
7066
7066
"Number";
7067
-
7067
+ "Buffer"; (* Node *)
7068
7068
"Map"; (* es6*)
7069
7069
"Set";
7070
7070
@@ -7091,7 +7091,7 @@ let reserved_words =
7091
7091
"parseFloat";
7092
7092
"parseInt";
7093
7093
7094
- (** reserved for commonjs and NodeJS globals*)
7094
+ (** reserved for commonjs and NodeJS globals*)
7095
7095
"require";
7096
7096
"exports";
7097
7097
"module";
@@ -7110,36 +7110,36 @@ let reserved_words =
7110
7110
"__esModule"
7111
7111
|]
7112
7112
7113
- let reserved_map =
7114
- let len = Array.length reserved_words in
7113
+ let reserved_map =
7114
+ let len = Array.length reserved_words in
7115
7115
let set = String_hash_set.create 1024 in (* large hash set for perfect hashing *)
7116
- for i = 0 to len - 1 do
7116
+ for i = 0 to len - 1 do
7117
7117
String_hash_set.add set reserved_words.(i);
7118
7118
done ;
7119
- set
7119
+ set
7120
7120
7121
7121
7122
7122
7123
- exception Not_normal_letter of int
7124
- let name_mangle name =
7123
+ exception Not_normal_letter of int
7124
+ let name_mangle name =
7125
7125
7126
7126
let len = String.length name in
7127
7127
try
7128
- for i = 0 to len - 1 do
7129
- match String.unsafe_get name i with
7128
+ for i = 0 to len - 1 do
7129
+ match String.unsafe_get name i with
7130
7130
| 'a' .. 'z' | 'A' .. 'Z'
7131
7131
| '0' .. '9' | '_' | '$'
7132
7132
-> ()
7133
7133
| _ -> raise (Not_normal_letter i)
7134
7134
done;
7135
7135
name (* Normal letter *)
7136
- with
7136
+ with
7137
7137
| Not_normal_letter 0 ->
7138
7138
7139
- let buffer = Buffer.create len in
7140
- for j = 0 to len - 1 do
7139
+ let buffer = Buffer.create len in
7140
+ for j = 0 to len - 1 do
7141
7141
let c = String.unsafe_get name j in
7142
- match c with
7142
+ match c with
7143
7143
| '*' -> Buffer.add_string buffer "$star"
7144
7144
| '\'' -> Buffer.add_string buffer "$prime"
7145
7145
| '!' -> Buffer.add_string buffer "$bang"
@@ -7157,25 +7157,25 @@ let name_mangle name =
7157
7157
| '~' -> Buffer.add_string buffer "$tilde"
7158
7158
| '#' -> Buffer.add_string buffer "$hash"
7159
7159
| ':' -> Buffer.add_string buffer "$colon"
7160
- | 'a'..'z' | 'A'..'Z'| '_'
7160
+ | 'a'..'z' | 'A'..'Z'| '_'
7161
7161
| '$'
7162
7162
| '0'..'9'-> Buffer.add_char buffer c
7163
7163
| _ -> Buffer.add_string buffer "$unknown"
7164
7164
done; Buffer.contents buffer
7165
- | Not_normal_letter i ->
7165
+ | Not_normal_letter i ->
7166
7166
String.sub name 0 i ^
7167
- (let buffer = Buffer.create len in
7168
- for j = i to len - 1 do
7167
+ (let buffer = Buffer.create len in
7168
+ for j = i to len - 1 do
7169
7169
let c = String.unsafe_get name j in
7170
- match c with
7170
+ match c with
7171
7171
| '*' -> Buffer.add_string buffer "$star"
7172
7172
| '\'' -> Buffer.add_string buffer "$prime"
7173
7173
| '!' -> Buffer.add_string buffer "$bang"
7174
7174
| '>' -> Buffer.add_string buffer "$great"
7175
7175
| '<' -> Buffer.add_string buffer "$less"
7176
7176
| '=' -> Buffer.add_string buffer "$eq"
7177
7177
| '+' -> Buffer.add_string buffer "$plus"
7178
- | '-' -> Buffer.add_string buffer "$"
7178
+ | '-' -> Buffer.add_string buffer "$"
7179
7179
(* Note ocaml compiler also has [self-] *)
7180
7180
| '@' -> Buffer.add_string buffer "$at"
7181
7181
| '^' -> Buffer.add_string buffer "$caret"
@@ -7187,7 +7187,7 @@ let name_mangle name =
7187
7187
| '#' -> Buffer.add_string buffer "$hash"
7188
7188
| ':' -> Buffer.add_string buffer "$colon"
7189
7189
| '$' -> Buffer.add_string buffer "$dollar"
7190
- | 'a'..'z' | 'A'..'Z'| '_'
7190
+ | 'a'..'z' | 'A'..'Z'| '_'
7191
7191
| '0'..'9'-> Buffer.add_char buffer c
7192
7192
| _ -> Buffer.add_string buffer "$unknown"
7193
7193
done; Buffer.contents buffer)
@@ -7198,41 +7198,41 @@ let name_mangle name =
7198
7198
- : string = "$caret"
7199
7199
]}
7200
7200
[convert name] if [name] is a js keyword,add "$$"
7201
- otherwise do the name mangling to make sure ocaml identifier it is
7201
+ otherwise do the name mangling to make sure ocaml identifier it is
7202
7202
a valid js identifier
7203
7203
*)
7204
- let convert (name : string) =
7205
- if String_hash_set.mem reserved_map name then "$$" ^ name
7206
- else name_mangle name
7204
+ let convert (name : string) =
7205
+ if String_hash_set.mem reserved_map name then "$$" ^ name
7206
+ else name_mangle name
7207
7207
7208
7208
(** keyword could be used in property *)
7209
7209
7210
- (* It is currently made a persistent ident to avoid fresh ids
7210
+ (* It is currently made a persistent ident to avoid fresh ids
7211
7211
which would result in different signature files
7212
7212
- other solution: use lazy values
7213
7213
*)
7214
7214
let make_unused () = create "_"
7215
7215
7216
7216
7217
7217
7218
- let reset () =
7218
+ let reset () =
7219
7219
String_hashtbl.clear js_module_table
7220
7220
7221
7221
7222
7222
let undefined = create_js "undefined"
7223
7223
let nil = create_js "null"
7224
7224
7225
- (* Has to be total order, [x < y]
7225
+ (* Has to be total order, [x < y]
7226
7226
and [x > y] should be consistent
7227
- flags are not relevant here
7227
+ flags are not relevant here
7228
7228
*)
7229
- let compare (x : Ident.t ) ( y : Ident.t) =
7229
+ let compare (x : Ident.t ) ( y : Ident.t) =
7230
7230
let u = x.stamp - y.stamp in
7231
- if u = 0 then
7232
- Ext_string.compare x.name y.name
7233
- else u
7231
+ if u = 0 then
7232
+ Ext_string.compare x.name y.name
7233
+ else u
7234
7234
7235
- let equal ( x : Ident.t) ( y : Ident.t) =
7235
+ let equal ( x : Ident.t) ( y : Ident.t) =
7236
7236
if x.stamp <> 0 then x.stamp = y.stamp
7237
7237
else y.stamp = 0 && x.name = y.name
7238
7238
0 commit comments