package merlin-lib
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Merlin's libraries
Install
dune-project
Dependency
Authors
Maintainers
Sources
merlin-5.8-505.tbz
sha256=5642cde8486a84aad98fa5c590b70e8dcc6074d7fbdb3b9b8c46b2c5b42f653b
sha512=1d7a7751157e393d3ae248ef5ae24a6b4e81430666c61cc51a3d0ec35804523317036f3d7a3c7f18a7554337f4e5f5989fb677865b261ece3fd2b317903570ba
doc/src/merlin-lib.ocaml_merlin_specific/tast_helper.ml.html
Source file tast_helper.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40open Typedtree module Pat = struct let pat_extra = [] let pat_attributes = [] let constant ?(loc = Location.none) pat_env pat_type c = let pat_desc = Tpat_constant c in { pat_desc; pat_loc = loc; pat_extra; pat_attributes; pat_type; pat_env } let var ?loc uid pat_env pat_type str = let pat_loc = match loc with | None -> str.Asttypes.loc | Some loc -> loc in let pat_desc = Tpat_var (Ident.create_local str.Asttypes.txt, str, uid) in { pat_desc; pat_loc; pat_extra; pat_attributes; pat_type; pat_env } let record ?(loc = Location.none) pat_env pat_type lst closed_flag = let pat_desc = Tpat_record (lst, closed_flag) in { pat_desc; pat_loc = loc; pat_extra; pat_attributes; pat_type; pat_env } let tuple ?(loc = Location.none) pat_env pat_type lst = let pat_desc = Tpat_tuple lst in { pat_desc; pat_loc = loc; pat_extra; pat_attributes; pat_type; pat_env } let construct ?(loc = Location.none) pat_env pat_type lid cstr_desc args locs_coretype = let pat_desc = Tpat_construct (lid, cstr_desc, args, locs_coretype) in { pat_desc; pat_loc = loc; pat_extra; pat_attributes; pat_type; pat_env } let pat_or ?(loc = Location.none) ?row_desc pat_env pat_type p1 p2 = let pat_desc = Tpat_or (p1, p2, row_desc) in { pat_desc; pat_loc = loc; pat_extra; pat_attributes; pat_type; pat_env } let variant ?(loc = Location.none) pat_env pat_type lbl sub rd = let pat_desc = Tpat_variant (lbl, sub, rd) in { pat_desc; pat_loc = loc; pat_extra; pat_attributes; pat_type; pat_env } end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>