package melange

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file ast_typ_uncurry.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
(* Copyright (C) 2020 Hongbo Zhang, Authors of ReScript
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * In addition to the permissions granted to you by the LGPL, you may combine
 * or link a "work that uses the Library" with a publicly distributed version
 * of this file to produce a combined library or application, then distribute
 * that combined work under the terms of your choosing, with no requirement
 * to comply with the obligations normally placed on you by section 4 of the
 * LGPL version 3 (or the corresponding section of a later version of the LGPL
 * should you choose to use a later version).
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)

open Import

type 'a cxt = Ast_helper.loc -> Ast_traverse.map -> 'a

type uncurry_type_gen =
  (Asttypes.arg_label -> core_type -> core_type -> core_type) cxt

module Typ = Ast_helper.Typ

let to_method_callback_type loc (mapper : Ast_traverse.map)
    (label : Asttypes.arg_label) (first_arg : core_type) (typ : core_type) =
  let first_arg = mapper#core_type first_arg in
  let typ = mapper#core_type typ in
  let meth_type = Typ.arrow ~loc label first_arg typ in
  let arity = Ast_core_type.get_uncurry_arity meth_type in
  match arity with
  | Some n ->
      Typ.constr
        {
          txt = Ldot (Ast_literal.js_meth_callback, "arity" ^ string_of_int n);
          loc;
        }
        [ meth_type ]
  | None -> assert false

let self_type_lit = "self_type"

let generate_method_type loc (mapper : Ast_traverse.map) ?alias_type method_name
    lbl pat e : core_type =
  let arity = Ast_pat.arity_of_fun pat e in
  let result = Typ.var ~loc method_name in
  let self_type loc = Typ.var ~loc self_type_lit in

  let self_type =
    let v = self_type loc in
    match alias_type with
    | None -> v
    | Some ty -> Typ.alias ~loc ty self_type_lit
  in
  if arity = 0 then to_method_callback_type loc mapper Nolabel self_type result
  else
    let tyvars =
      List.mapi
        ~f:(fun i x -> (x, Typ.var ~loc (method_name ^ string_of_int i)))
        (lbl :: Ast_pat.labels_of_fun e)
    in
    match tyvars with
    | (label, x) :: rest ->
        let method_rest =
          List.fold_right
            ~f:(fun (label, v) acc -> Typ.arrow ~loc label v acc)
            rest ~init:result
        in
        to_method_callback_type loc mapper Nolabel self_type
          (Typ.arrow ~loc label x method_rest)
    | _ -> assert false

let to_method_type loc (mapper : Ast_traverse.map) (label : Asttypes.arg_label)
    (first_arg : core_type) (typ : core_type) =
  let first_arg = mapper#core_type first_arg in
  let typ = mapper#core_type typ in
  let meth_type = Typ.arrow ~loc label first_arg typ in
  let arity = Ast_core_type.get_uncurry_arity meth_type in
  match arity with
  | Some 0 ->
      Typ.constr { txt = Ldot (Ast_literal.js_meth, "arity0"); loc } [ typ ]
  | Some n ->
      Typ.constr
        { txt = Ldot (Ast_literal.js_meth, "arity" ^ string_of_int n); loc }
        [ meth_type ]
  | None -> assert false

let generate_arg_type loc (mapper : Ast_traverse.map) method_name label pat body
    : core_type =
  let arity = Ast_pat.arity_of_fun pat body in
  let result = Typ.var ~loc method_name in
  if arity = 0 then to_method_type loc mapper Nolabel [%type: unit] result
  else
    let tyvars =
      List.mapi
        ~f:(fun i x -> (x, Typ.var ~loc (method_name ^ string_of_int i)))
        (label :: Ast_pat.labels_of_fun body)
    in
    match tyvars with
    | (label, x) :: rest ->
        let method_rest =
          List.fold_right
            ~f:(fun (label, v) acc -> Typ.arrow ~loc label v acc)
            rest ~init:result
        in
        to_method_type loc mapper label x method_rest
    | _ -> assert false

let to_uncurry_type loc (mapper : Ast_traverse.map) (label : Asttypes.arg_label)
    (first_arg : core_type) (typ : core_type) =
  (* no need to error for optional here,
     since we can not make it
     TODO: still error out for external?
     Maybe no need to error on optional at all
     it just does not make sense
  *)
  let first_arg = mapper#core_type first_arg in
  let typ = mapper#core_type typ in

  let fn_type = Typ.arrow ~loc label first_arg typ in
  let arity = Ast_core_type.get_uncurry_arity fn_type in
  match arity with
  | Some 0 ->
      Typ.constr { txt = Ldot (Ast_literal.js_fn, "arity0"); loc } [ typ ]
  | Some n ->
      Typ.constr
        { txt = Ldot (Ast_literal.js_fn, "arity" ^ string_of_int n); loc }
        [ fn_type ]
  | None -> assert false
OCaml

Innovation. Community. Security.