Skip to content

Commit 326f3fb

Browse files
committed
clean up
1 parent 54734f8 commit 326f3fb

21 files changed

+6639
-6142
lines changed

jscomp/Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,11 @@ COMMON_SRCS= bs_version js_config bs_pkg ext_log bs_loc bs_warnings lam_methna
206206
COMMON_CMXS= $(addprefix common/, $(addsuffix .cmx, $(COMMON_SRCS)))
207207
SYNTAX_SRCS=ast_derive_constructor ast_derive_util ast_exp ast_external ast_lift \
208208
ast_literal ast_pat ast_payload ast_signature ast_structure bs_ast_iterator bs_ast_invariant \
209-
ast_derive ast_comb ast_attributes ast_core_type ast_derive_dyn ast_derive_projector \
210-
ast_external_attributes ast_util ppx_entry
209+
ast_derive ast_comb ast_attributes ast_core_type ast_derive_dyn\
210+
ast_derive_projector \
211+
ast_ffi_types\
212+
ast_external_attributes \
213+
ast_util ppx_entry
211214
SYNTAX_CMXS=$(addprefix syntax/, $(addsuffix .cmx, $(SYNTAX_SRCS)))
212215
DEPENDS_SRCS= depends_post_process bs_exception ast_extract binary_ast
213216
DEPENDS_CMXS=$(addprefix depends/, $(addsuffix .cmx, $(DEPENDS_SRCS)))

jscomp/all.depend

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,11 @@ syntax/ast_derive_dyn.cmx : syntax/ast_structure.cmx \
177177
syntax/ast_derive_projector.cmx : ext/ext_list.cmx \
178178
syntax/ast_derive_util.cmx syntax/ast_derive.cmx \
179179
syntax/ast_derive_projector.cmi
180+
syntax/ast_ffi_types.cmx : ext/ext_string.cmx ext/ext_pervasives.cmx \
181+
common/bs_version.cmx syntax/ast_core_type.cmx syntax/ast_ffi_types.cmi
180182
syntax/ast_external_attributes.cmx : common/lam_methname.cmx \
181183
ext/ext_string.cmx ext/ext_pervasives.cmx common/bs_warnings.cmx \
182-
common/bs_version.cmx common/bs_loc.cmx syntax/ast_payload.cmx \
184+
common/bs_loc.cmx syntax/ast_payload.cmx syntax/ast_ffi_types.cmx \
183185
syntax/ast_core_type.cmx syntax/ast_comb.cmx syntax/ast_attributes.cmx \
184186
syntax/ast_external_attributes.cmi
185187
syntax/ast_util.cmx : ext/literals.cmx ext/ext_list.cmx \
@@ -210,6 +212,7 @@ syntax/ast_attributes.cmi : syntax/ast_payload.cmi
210212
syntax/ast_core_type.cmi :
211213
syntax/ast_derive_dyn.cmi :
212214
syntax/ast_derive_projector.cmi :
215+
syntax/ast_ffi_types.cmi : syntax/ast_core_type.cmi
213216
syntax/ast_external_attributes.cmi : common/bs_loc.cmi \
214217
syntax/ast_core_type.cmi syntax/ast_attributes.cmi
215218
syntax/ast_util.cmi : syntax/ast_payload.cmi
@@ -486,8 +489,8 @@ core/lam_compile_external_call.cmx : core/lam_dispatch_primitive.cmx \
486489
core/lam_compile_env.cmx core/lam_compile_defs.cmx core/js_op.cmx \
487490
core/js_of_lam_variant.cmx core/js_of_lam_option.cmx core/js_exp_make.cmx \
488491
core/js_arr.cmx core/js_analyzer.cmx core/j.cmx ext/ext_list.cmx \
489-
ext/ext_ident.cmx syntax/ast_external_attributes.cmx \
490-
syntax/ast_core_type.cmx core/lam_compile_external_call.cmi
492+
ext/ext_ident.cmx syntax/ast_ffi_types.cmx syntax/ast_core_type.cmx \
493+
core/lam_compile_external_call.cmi
491494
core/lam_compile_primitive.cmx : core/lam_util.cmx \
492495
core/lam_compile_global.cmx core/lam_compile_external_call.cmx \
493496
core/lam_compile_defs.cmx core/lam.cmx core/js_op_util.cmx \

jscomp/bin/bsdep.d

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,12 @@ bin/bsdep.ml : syntax/ast_derive_projector.ml
7070
bin/bsdep.ml : syntax/ast_derive_projector.mli
7171
bin/bsdep.ml : syntax/ast_core_type.ml
7272
bin/bsdep.ml : syntax/ast_core_type.mli
73-
bin/bsdep.ml : common/bs_loc.ml
74-
bin/bsdep.ml : common/bs_loc.mli
7573
bin/bsdep.ml : ext/ext_pervasives.ml
7674
bin/bsdep.ml : ext/ext_pervasives.mli
75+
bin/bsdep.ml : syntax/ast_ffi_types.ml
76+
bin/bsdep.ml : syntax/ast_ffi_types.mli
77+
bin/bsdep.ml : common/bs_loc.ml
78+
bin/bsdep.ml : common/bs_loc.mli
7779
bin/bsdep.ml : ext/ext_filename.ml
7880
bin/bsdep.ml : ext/ext_filename.mli
7981
bin/bsdep.ml : common/js_config.ml

0 commit comments

Comments
 (0)