|
[ |
|
{ |
|
"psig_desc": [ |
|
"Psig_attribute", |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.text" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" Parametric diffing\n\n This module implements diffing over lists of arbitrary content.\n It is parameterized by\n - The content of the two lists\n - The equality witness when an element is kept\n - The diffing witness when an element is changed\n\n Diffing is extended to maintain state depending on the\n computed changes while walking through the two lists.\n\n The underlying algorithm is a modified Wagner-Fischer algorithm\n (see <https://en.wikipedia.org/wiki/Wagner%E2%80%93Fischer_algorithm>).\n\n We provide the following guarantee:\n Given two lists [l] and [r], if different patches result in different\n states, we say that the state diverges.\n - We always return the optimal patch on prefixes of [l] and [r]\n on which state does not diverge.\n - Otherwise, we return a correct but non-optimal patch where subpatches\n with no divergent states are optimal for the given initial state.\n\n More precisely, the optimality of Wagner-Fischer depends on the property\n that the edit-distance between a k-prefix of the left input and a l-prefix\n of the right input d(k,l) satisfies\n\n d(k,l) = min (\n del_cost + d(k-1,l),\n insert_cost + d(k,l-1),\n change_cost + d(k-1,l-1)\n )\n\n Under this hypothesis, it is optimal to choose greedily the state of the\n minimal patch transforming the left k-prefix into the right l-prefix as a\n representative of the states of all possible patches transforming the left\n k-prefix into the right l-prefix.\n\n If this property is not satisfied, we can still choose greedily a\n representative state. However, the computed patch is no more guaranteed to\n be globally optimal.\n Nevertheless, it is still a correct patch, which is even optimal among all\n explored patches.\n\n", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 16, |
|
"pos_bol": 1079, |
|
"pos_cnum": 1079 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 59, |
|
"pos_bol": 2863, |
|
"pos_cnum": 2865 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 16, |
|
"pos_bol": 1079, |
|
"pos_cnum": 1079 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 59, |
|
"pos_bol": 2863, |
|
"pos_cnum": 2865 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 16, |
|
"pos_bol": 1079, |
|
"pos_cnum": 1079 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 59, |
|
"pos_bol": 2863, |
|
"pos_cnum": 2865 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 16, |
|
"pos_bol": 1079, |
|
"pos_cnum": 1079 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 59, |
|
"pos_bol": 2863, |
|
"pos_cnum": 2865 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 16, |
|
"pos_bol": 1079, |
|
"pos_cnum": 1079 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 59, |
|
"pos_bol": 2863, |
|
"pos_cnum": 2865 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_modtype", |
|
{ |
|
"pmtd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 62, |
|
"pos_bol": 2917, |
|
"pos_cnum": 2929 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 62, |
|
"pos_bol": 2917, |
|
"pos_cnum": 2933 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Defs" |
|
}, |
|
"pmtd_type": { |
|
"pmty_desc": [ |
|
"Pmty_signature", |
|
[ |
|
{ |
|
"psig_desc": [ |
|
"Psig_type", |
|
[ "Recursive" ], |
|
[ |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 63, |
|
"pos_bol": 2940, |
|
"pos_cnum": 2947 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 63, |
|
"pos_bol": 2940, |
|
"pos_cnum": 2951 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "left" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": null, |
|
"ptype_attributes": [], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 63, |
|
"pos_bol": 2940, |
|
"pos_cnum": 2942 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 63, |
|
"pos_bol": 2940, |
|
"pos_cnum": 2951 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 63, |
|
"pos_bol": 2940, |
|
"pos_cnum": 2942 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 63, |
|
"pos_bol": 2940, |
|
"pos_cnum": 2951 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_type", |
|
[ "Recursive" ], |
|
[ |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 64, |
|
"pos_bol": 2952, |
|
"pos_cnum": 2959 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 64, |
|
"pos_bol": 2952, |
|
"pos_cnum": 2964 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "right" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": null, |
|
"ptype_attributes": [], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 64, |
|
"pos_bol": 2952, |
|
"pos_cnum": 2954 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 64, |
|
"pos_bol": 2952, |
|
"pos_cnum": 2964 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 64, |
|
"pos_bol": 2952, |
|
"pos_cnum": 2954 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 64, |
|
"pos_bol": 2952, |
|
"pos_cnum": 2964 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_type", |
|
[ "Recursive" ], |
|
[ |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 65, |
|
"pos_bol": 2965, |
|
"pos_cnum": 2972 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 65, |
|
"pos_bol": 2965, |
|
"pos_cnum": 2974 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "eq" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": null, |
|
"ptype_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" Detailed equality trace ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 66, |
|
"pos_bol": 2975, |
|
"pos_cnum": 2977 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 66, |
|
"pos_bol": 2975, |
|
"pos_cnum": 3007 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 66, |
|
"pos_bol": 2975, |
|
"pos_cnum": 2977 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 66, |
|
"pos_bol": 2975, |
|
"pos_cnum": 3007 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 66, |
|
"pos_bol": 2975, |
|
"pos_cnum": 2977 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 66, |
|
"pos_bol": 2975, |
|
"pos_cnum": 3007 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 66, |
|
"pos_bol": 2975, |
|
"pos_cnum": 2977 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 66, |
|
"pos_bol": 2975, |
|
"pos_cnum": 3007 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 65, |
|
"pos_bol": 2965, |
|
"pos_cnum": 2967 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 65, |
|
"pos_bol": 2965, |
|
"pos_cnum": 2974 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 65, |
|
"pos_bol": 2965, |
|
"pos_cnum": 2967 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 65, |
|
"pos_bol": 2965, |
|
"pos_cnum": 2974 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_type", |
|
[ "Recursive" ], |
|
[ |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 68, |
|
"pos_bol": 3009, |
|
"pos_cnum": 3016 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 68, |
|
"pos_bol": 3009, |
|
"pos_cnum": 3020 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "diff" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": null, |
|
"ptype_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" Detailed difference trace ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 69, |
|
"pos_bol": 3021, |
|
"pos_cnum": 3023 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 69, |
|
"pos_bol": 3021, |
|
"pos_cnum": 3055 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 69, |
|
"pos_bol": 3021, |
|
"pos_cnum": 3023 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 69, |
|
"pos_bol": 3021, |
|
"pos_cnum": 3055 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 69, |
|
"pos_bol": 3021, |
|
"pos_cnum": 3023 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 69, |
|
"pos_bol": 3021, |
|
"pos_cnum": 3055 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 69, |
|
"pos_bol": 3021, |
|
"pos_cnum": 3023 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 69, |
|
"pos_bol": 3021, |
|
"pos_cnum": 3055 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 68, |
|
"pos_bol": 3009, |
|
"pos_cnum": 3011 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 68, |
|
"pos_bol": 3009, |
|
"pos_cnum": 3020 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 68, |
|
"pos_bol": 3009, |
|
"pos_cnum": 3011 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 68, |
|
"pos_bol": 3009, |
|
"pos_cnum": 3020 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_type", |
|
[ "Recursive" ], |
|
[ |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 71, |
|
"pos_bol": 3057, |
|
"pos_cnum": 3064 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 71, |
|
"pos_bol": 3057, |
|
"pos_cnum": 3069 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "state" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": null, |
|
"ptype_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" environment of a partial patch ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 72, |
|
"pos_bol": 3070, |
|
"pos_cnum": 3072 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 72, |
|
"pos_bol": 3070, |
|
"pos_cnum": 3109 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 72, |
|
"pos_bol": 3070, |
|
"pos_cnum": 3072 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 72, |
|
"pos_bol": 3070, |
|
"pos_cnum": 3109 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 72, |
|
"pos_bol": 3070, |
|
"pos_cnum": 3072 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 72, |
|
"pos_bol": 3070, |
|
"pos_cnum": 3109 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 72, |
|
"pos_bol": 3070, |
|
"pos_cnum": 3072 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 72, |
|
"pos_bol": 3070, |
|
"pos_cnum": 3109 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 71, |
|
"pos_bol": 3057, |
|
"pos_cnum": 3059 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 71, |
|
"pos_bol": 3057, |
|
"pos_cnum": 3069 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 71, |
|
"pos_bol": 3057, |
|
"pos_cnum": 3059 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 71, |
|
"pos_bol": 3057, |
|
"pos_cnum": 3069 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 62, |
|
"pos_bol": 2917, |
|
"pos_cnum": 2936 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 73, |
|
"pos_bol": 3110, |
|
"pos_cnum": 3113 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
}, |
|
"pmtd_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" The core types of a diffing implementation ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 61, |
|
"pos_bol": 2867, |
|
"pos_cnum": 2867 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 61, |
|
"pos_bol": 2867, |
|
"pos_cnum": 2916 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 61, |
|
"pos_bol": 2867, |
|
"pos_cnum": 2867 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 61, |
|
"pos_bol": 2867, |
|
"pos_cnum": 2916 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 61, |
|
"pos_bol": 2867, |
|
"pos_cnum": 2867 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 61, |
|
"pos_bol": 2867, |
|
"pos_cnum": 2916 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 61, |
|
"pos_bol": 2867, |
|
"pos_cnum": 2867 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 61, |
|
"pos_bol": 2867, |
|
"pos_cnum": 2916 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"pmtd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 62, |
|
"pos_bol": 2917, |
|
"pos_cnum": 2917 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 73, |
|
"pos_bol": 3110, |
|
"pos_cnum": 3113 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 62, |
|
"pos_bol": 2917, |
|
"pos_cnum": 2917 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 73, |
|
"pos_bol": 3110, |
|
"pos_cnum": 3113 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_type", |
|
[ "Recursive" ], |
|
[ |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 77, |
|
"pos_bol": 3211, |
|
"pos_cnum": 3216 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 77, |
|
"pos_bol": 3211, |
|
"pos_cnum": 3227 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "change_kind" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ |
|
"Ptype_variant", |
|
[ |
|
{ |
|
"pcd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 78, |
|
"pos_bol": 3230, |
|
"pos_cnum": 3234 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 78, |
|
"pos_bol": 3230, |
|
"pos_cnum": 3242 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Deletion" |
|
}, |
|
"pcd_vars": [], |
|
"pcd_args": [ "Pcstr_tuple", [] ], |
|
"pcd_res": null, |
|
"pcd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 78, |
|
"pos_bol": 3230, |
|
"pos_cnum": 3232 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 78, |
|
"pos_bol": 3230, |
|
"pos_cnum": 3242 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pcd_attributes": [] |
|
}, |
|
{ |
|
"pcd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 79, |
|
"pos_bol": 3243, |
|
"pos_cnum": 3247 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 79, |
|
"pos_bol": 3243, |
|
"pos_cnum": 3256 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Insertion" |
|
}, |
|
"pcd_vars": [], |
|
"pcd_args": [ "Pcstr_tuple", [] ], |
|
"pcd_res": null, |
|
"pcd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 79, |
|
"pos_bol": 3243, |
|
"pos_cnum": 3245 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 79, |
|
"pos_bol": 3243, |
|
"pos_cnum": 3256 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pcd_attributes": [] |
|
}, |
|
{ |
|
"pcd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 80, |
|
"pos_bol": 3257, |
|
"pos_cnum": 3261 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 80, |
|
"pos_bol": 3257, |
|
"pos_cnum": 3273 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Modification" |
|
}, |
|
"pcd_vars": [], |
|
"pcd_args": [ "Pcstr_tuple", [] ], |
|
"pcd_res": null, |
|
"pcd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 80, |
|
"pos_bol": 3257, |
|
"pos_cnum": 3259 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 80, |
|
"pos_bol": 3257, |
|
"pos_cnum": 3273 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pcd_attributes": [] |
|
}, |
|
{ |
|
"pcd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 81, |
|
"pos_bol": 3274, |
|
"pos_cnum": 3278 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 81, |
|
"pos_bol": 3274, |
|
"pos_cnum": 3290 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Preservation" |
|
}, |
|
"pcd_vars": [], |
|
"pcd_args": [ "Pcstr_tuple", [] ], |
|
"pcd_res": null, |
|
"pcd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 81, |
|
"pos_bol": 3274, |
|
"pos_cnum": 3276 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 81, |
|
"pos_bol": 3274, |
|
"pos_cnum": 3290 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pcd_attributes": [] |
|
} |
|
] |
|
], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": null, |
|
"ptype_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" The kind of changes which is used to share printing and styling\n across implementation", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 75, |
|
"pos_bol": 3115, |
|
"pos_cnum": 3115 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 76, |
|
"pos_bol": 3183, |
|
"pos_cnum": 3210 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 75, |
|
"pos_bol": 3115, |
|
"pos_cnum": 3115 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 76, |
|
"pos_bol": 3183, |
|
"pos_cnum": 3210 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 75, |
|
"pos_bol": 3115, |
|
"pos_cnum": 3115 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 76, |
|
"pos_bol": 3183, |
|
"pos_cnum": 3210 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 75, |
|
"pos_bol": 3115, |
|
"pos_cnum": 3115 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 76, |
|
"pos_bol": 3183, |
|
"pos_cnum": 3210 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 77, |
|
"pos_bol": 3211, |
|
"pos_cnum": 3211 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 81, |
|
"pos_bol": 3274, |
|
"pos_cnum": 3290 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 77, |
|
"pos_bol": 3211, |
|
"pos_cnum": 3211 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 81, |
|
"pos_bol": 3274, |
|
"pos_cnum": 3290 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_value", |
|
{ |
|
"pval_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3295 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3301 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "prefix" |
|
}, |
|
"pval_type": { |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"Format_docprinter", |
|
[ |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_tuple", |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_constr", "int", [] ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3304 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3307 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ "Ptyp_constr", "change_kind", [] ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3310 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3321 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3304 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3321 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3303 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3341 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"pval_prim": [], |
|
"pval_attributes": [], |
|
"pval_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3291 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3341 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3291 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 82, |
|
"pos_bol": 3291, |
|
"pos_cnum": 3341 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_value", |
|
{ |
|
"pval_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3346 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3351 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "style" |
|
}, |
|
"pval_type": { |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ "Ptyp_constr", "change_kind", [] ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3353 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3364 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"list", |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_constr", "MiscStylestyle", [] ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3368 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3384 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3368 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3389 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3353 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3389 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"pval_prim": [], |
|
"pval_attributes": [], |
|
"pval_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3342 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3389 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3342 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 83, |
|
"pos_bol": 3342, |
|
"pos_cnum": 3389 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_type", |
|
[ "Recursive" ], |
|
[ |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3422 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3428 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "change" |
|
}, |
|
"ptype_params": [ |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "left" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3398 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3403 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
[ [ "NoVariance" ], [ "NoInjectivity" ] ] |
|
], |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "right" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3404 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3410 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
[ [ "NoVariance" ], [ "NoInjectivity" ] ] |
|
], |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "eq" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3411 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3414 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
[ [ "NoVariance" ], [ "NoInjectivity" ] ] |
|
], |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "diff" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3415 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3420 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
[ [ "NoVariance" ], [ "NoInjectivity" ] ] |
|
] |
|
], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ |
|
"Ptype_variant", |
|
[ |
|
{ |
|
"pcd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 87, |
|
"pos_bol": 3431, |
|
"pos_cnum": 3435 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 87, |
|
"pos_bol": 3431, |
|
"pos_cnum": 3441 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Delete" |
|
}, |
|
"pcd_vars": [], |
|
"pcd_args": [ |
|
"Pcstr_tuple", |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "left" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 87, |
|
"pos_bol": 3431, |
|
"pos_cnum": 3445 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 87, |
|
"pos_bol": 3431, |
|
"pos_cnum": 3450 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"pcd_res": null, |
|
"pcd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 87, |
|
"pos_bol": 3431, |
|
"pos_cnum": 3433 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 87, |
|
"pos_bol": 3431, |
|
"pos_cnum": 3450 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pcd_attributes": [] |
|
}, |
|
{ |
|
"pcd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 88, |
|
"pos_bol": 3451, |
|
"pos_cnum": 3455 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 88, |
|
"pos_bol": 3451, |
|
"pos_cnum": 3461 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Insert" |
|
}, |
|
"pcd_vars": [], |
|
"pcd_args": [ |
|
"Pcstr_tuple", |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "right" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 88, |
|
"pos_bol": 3451, |
|
"pos_cnum": 3465 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 88, |
|
"pos_bol": 3451, |
|
"pos_cnum": 3471 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"pcd_res": null, |
|
"pcd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 88, |
|
"pos_bol": 3451, |
|
"pos_cnum": 3453 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 88, |
|
"pos_bol": 3451, |
|
"pos_cnum": 3471 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pcd_attributes": [] |
|
}, |
|
{ |
|
"pcd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 89, |
|
"pos_bol": 3472, |
|
"pos_cnum": 3476 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 89, |
|
"pos_bol": 3472, |
|
"pos_cnum": 3480 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Keep" |
|
}, |
|
"pcd_vars": [], |
|
"pcd_args": [ |
|
"Pcstr_tuple", |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "left" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 89, |
|
"pos_bol": 3472, |
|
"pos_cnum": 3484 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 89, |
|
"pos_bol": 3472, |
|
"pos_cnum": 3489 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "right" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 89, |
|
"pos_bol": 3472, |
|
"pos_cnum": 3492 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 89, |
|
"pos_bol": 3472, |
|
"pos_cnum": 3498 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "eq" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 89, |
|
"pos_bol": 3472, |
|
"pos_cnum": 3500 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 89, |
|
"pos_bol": 3472, |
|
"pos_cnum": 3504 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"pcd_res": null, |
|
"pcd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 89, |
|
"pos_bol": 3472, |
|
"pos_cnum": 3474 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 89, |
|
"pos_bol": 3472, |
|
"pos_cnum": 3504 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pcd_attributes": [] |
|
}, |
|
{ |
|
"pcd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3509 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3515 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Change" |
|
}, |
|
"pcd_vars": [], |
|
"pcd_args": [ |
|
"Pcstr_tuple", |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "left" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3519 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3524 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "right" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3527 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3533 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ "Ptyp_var", "diff" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3536 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3541 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"pcd_res": null, |
|
"pcd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3507 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3541 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pcd_attributes": [] |
|
} |
|
] |
|
], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": null, |
|
"ptype_attributes": [], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3392 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3541 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 86, |
|
"pos_bol": 3392, |
|
"pos_cnum": 3392 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 90, |
|
"pos_bol": 3505, |
|
"pos_cnum": 3541 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_value", |
|
{ |
|
"pval_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3547 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3555 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "classify" |
|
}, |
|
"pval_type": { |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"change", |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_any" ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3557 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3558 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3557 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3565 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ "Ptyp_constr", "change_kind", [] ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3569 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3580 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3557 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3580 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"pval_prim": [], |
|
"pval_attributes": [], |
|
"pval_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3543 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3580 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3543 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 92, |
|
"pos_bol": 3543, |
|
"pos_cnum": 3580 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_module", |
|
{ |
|
"pmd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 98, |
|
"pos_bol": 3755, |
|
"pos_cnum": 3762 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 98, |
|
"pos_bol": 3755, |
|
"pos_cnum": 3768 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Define" |
|
}, |
|
"pmd_type": { |
|
"pmty_desc": [ |
|
"Pmty_functor", |
|
[ |
|
"Named", |
|
{ |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 98, |
|
"pos_bol": 3755, |
|
"pos_cnum": 3769 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 98, |
|
"pos_bol": 3755, |
|
"pos_cnum": 3770 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "D" |
|
}, |
|
{ |
|
"pmty_desc": [ "Pmty_ident", "Defs" ], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 98, |
|
"pos_bol": 3755, |
|
"pos_cnum": 3771 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 98, |
|
"pos_bol": 3755, |
|
"pos_cnum": 3775 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
} |
|
], |
|
{ |
|
"pmty_desc": [ |
|
"Pmty_signature", |
|
[ |
|
{ |
|
"psig_desc": [ |
|
"Psig_open", |
|
{ |
|
"popen_expr": "D", |
|
"popen_override": "Fresh", |
|
"popen_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 99, |
|
"pos_bol": 3782, |
|
"pos_cnum": 3784 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 99, |
|
"pos_bol": 3782, |
|
"pos_cnum": 3790 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"popen_attributes": [] |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 99, |
|
"pos_bol": 3782, |
|
"pos_cnum": 3784 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 99, |
|
"pos_bol": 3782, |
|
"pos_cnum": 3790 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_type", |
|
[ "Nonrecursive" ], |
|
[ |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3856 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3862 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "change" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": { |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"change", |
|
[ |
|
{ |
|
"ptyp_desc": [ "Ptyp_constr", "left", [] ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3866 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3870 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ "Ptyp_constr", "right", [] ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3871 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3876 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ "Ptyp_constr", "eq", [] ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3877 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3879 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ "Ptyp_constr", "diff", [] ], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3880 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3884 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3865 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3892 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"ptype_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" The type of potential changes on a list. ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 101, |
|
"pos_bol": 3792, |
|
"pos_cnum": 3794 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 101, |
|
"pos_bol": 3792, |
|
"pos_cnum": 3841 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 101, |
|
"pos_bol": 3792, |
|
"pos_cnum": 3794 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 101, |
|
"pos_bol": 3792, |
|
"pos_cnum": 3841 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 101, |
|
"pos_bol": 3792, |
|
"pos_cnum": 3794 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 101, |
|
"pos_bol": 3792, |
|
"pos_cnum": 3841 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 101, |
|
"pos_bol": 3792, |
|
"pos_cnum": 3794 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 101, |
|
"pos_bol": 3792, |
|
"pos_cnum": 3841 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3844 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3892 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3844 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 102, |
|
"pos_bol": 3842, |
|
"pos_cnum": 3892 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_type", |
|
[ "Recursive" ], |
|
[ |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 103, |
|
"pos_bol": 3893, |
|
"pos_cnum": 3900 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 103, |
|
"pos_bol": 3893, |
|
"pos_cnum": 3905 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "patch" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": { |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"list", |
|
[ |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "change", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 103, |
|
"pos_bol": 3893, |
|
"pos_cnum": 3908 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 103, |
|
"pos_bol": 3893, |
|
"pos_cnum": 3914 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 103, |
|
"pos_bol": 3893, |
|
"pos_cnum": 3908 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 103, |
|
"pos_bol": 3893, |
|
"pos_cnum": 3919 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"ptype_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" A patch is an ordered list of changes. ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 104, |
|
"pos_bol": 3920, |
|
"pos_cnum": 3922 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 104, |
|
"pos_bol": 3920, |
|
"pos_cnum": 3967 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 104, |
|
"pos_bol": 3920, |
|
"pos_cnum": 3922 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 104, |
|
"pos_bol": 3920, |
|
"pos_cnum": 3967 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 104, |
|
"pos_bol": 3920, |
|
"pos_cnum": 3922 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 104, |
|
"pos_bol": 3920, |
|
"pos_cnum": 3967 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 104, |
|
"pos_bol": 3920, |
|
"pos_cnum": 3922 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 104, |
|
"pos_bol": 3920, |
|
"pos_cnum": 3967 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 103, |
|
"pos_bol": 3893, |
|
"pos_cnum": 3895 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 103, |
|
"pos_bol": 3893, |
|
"pos_cnum": 3919 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 103, |
|
"pos_bol": 3893, |
|
"pos_cnum": 3895 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 103, |
|
"pos_bol": 3893, |
|
"pos_cnum": 3919 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_modtype", |
|
{ |
|
"pmtd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 106, |
|
"pos_bol": 3969, |
|
"pos_cnum": 3983 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 106, |
|
"pos_bol": 3969, |
|
"pos_cnum": 3993 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Parameters" |
|
}, |
|
"pmtd_type": { |
|
"pmty_desc": [ |
|
"Pmty_signature", |
|
[ |
|
{ |
|
"psig_desc": [ |
|
"Psig_type", |
|
[ "Recursive" ], |
|
[ |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 107, |
|
"pos_bol": 4000, |
|
"pos_cnum": 4009 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 107, |
|
"pos_bol": 4000, |
|
"pos_cnum": 4022 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "update_result" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": null, |
|
"ptype_attributes": [], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 107, |
|
"pos_bol": 4000, |
|
"pos_cnum": 4004 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 107, |
|
"pos_bol": 4000, |
|
"pos_cnum": 4022 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 107, |
|
"pos_bol": 4000, |
|
"pos_cnum": 4004 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 107, |
|
"pos_bol": 4000, |
|
"pos_cnum": 4022 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_value", |
|
{ |
|
"pval_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4032 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4038 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "weight" |
|
}, |
|
"pval_type": { |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "change", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4040 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4046 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "int", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4050 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4053 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4040 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4053 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"pval_prim": [], |
|
"pval_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" [weight ch] returns the weight of the change [ch].\n Used to find the smallest patch. ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 110, |
|
"pos_bol": 4054, |
|
"pos_cnum": 4058 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 111, |
|
"pos_bol": 4113, |
|
"pos_cnum": 4156 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 110, |
|
"pos_bol": 4054, |
|
"pos_cnum": 4058 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 111, |
|
"pos_bol": 4113, |
|
"pos_cnum": 4156 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 110, |
|
"pos_bol": 4054, |
|
"pos_cnum": 4058 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 111, |
|
"pos_bol": 4113, |
|
"pos_cnum": 4156 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 110, |
|
"pos_bol": 4054, |
|
"pos_cnum": 4058 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 111, |
|
"pos_bol": 4113, |
|
"pos_cnum": 4156 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"pval_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4028 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4053 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4028 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 109, |
|
"pos_bol": 4024, |
|
"pos_cnum": 4053 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_value", |
|
{ |
|
"pval_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4166 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4170 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "test" |
|
}, |
|
"pval_type": { |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "state", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4172 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4177 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "left", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4181 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4185 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "right", |
|
[] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4189 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4194 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"result", |
|
[ |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"eq", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4199 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4201 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"diff", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4203 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4207 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4198 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4215 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4189 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4215 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4181 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4215 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4172 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4215 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"pval_prim": [], |
|
"pval_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
"\n [test st xl xr] tests if the elements [xl] and [xr] are\n co mpatible ([Ok]) or not ([Error]).\n ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 114, |
|
"pos_bol": 4216, |
|
"pos_cnum": 4220 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 117, |
|
"pos_bol": 4333, |
|
"pos_cnum": 4339 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 114, |
|
"pos_bol": 4216, |
|
"pos_cnum": 4220 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 117, |
|
"pos_bol": 4333, |
|
"pos_cnum": 4339 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 114, |
|
"pos_bol": 4216, |
|
"pos_cnum": 4220 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 117, |
|
"pos_bol": 4333, |
|
"pos_cnum": 4339 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 114, |
|
"pos_bol": 4216, |
|
"pos_cnum": 4220 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 117, |
|
"pos_bol": 4333, |
|
"pos_cnum": 4339 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"pval_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4162 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4215 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4162 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 113, |
|
"pos_bol": 4158, |
|
"pos_cnum": 4215 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_value", |
|
{ |
|
"pval_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4349 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4355 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "update" |
|
}, |
|
"pval_type": { |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "change", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4357 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4363 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "state", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4367 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4372 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"update_result", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4376 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4389 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4367 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4389 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4357 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4389 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"pval_prim": [], |
|
"pval_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" [update ch st] returns the new state after applying a change.\n The [update_result] type also contains expansions in the variadic\n case.\n ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 120, |
|
"pos_bol": 4390, |
|
"pos_cnum": 4394 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 123, |
|
"pos_bol": 4551, |
|
"pos_cnum": 4558 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 120, |
|
"pos_bol": 4390, |
|
"pos_cnum": 4394 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 123, |
|
"pos_bol": 4551, |
|
"pos_cnum": 4558 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 120, |
|
"pos_bol": 4390, |
|
"pos_cnum": 4394 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 123, |
|
"pos_bol": 4551, |
|
"pos_cnum": 4558 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 120, |
|
"pos_bol": 4390, |
|
"pos_cnum": 4394 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 123, |
|
"pos_bol": 4551, |
|
"pos_cnum": 4558 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"pval_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4345 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4389 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4345 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 119, |
|
"pos_bol": 4341, |
|
"pos_cnum": 4389 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 106, |
|
"pos_bol": 3969, |
|
"pos_cnum": 3996 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 124, |
|
"pos_bol": 4559, |
|
"pos_cnum": 4564 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
}, |
|
"pmtd_attributes": [], |
|
"pmtd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 106, |
|
"pos_bol": 3969, |
|
"pos_cnum": 3971 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 124, |
|
"pos_bol": 4559, |
|
"pos_cnum": 4564 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 106, |
|
"pos_bol": 3969, |
|
"pos_cnum": 3971 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 124, |
|
"pos_bol": 4559, |
|
"pos_cnum": 4564 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_modtype", |
|
{ |
|
"pmtd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 126, |
|
"pos_bol": 4566, |
|
"pos_cnum": 4580 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 126, |
|
"pos_bol": 4566, |
|
"pos_cnum": 4581 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "S" |
|
}, |
|
"pmtd_type": { |
|
"pmty_desc": [ |
|
"Pmty_signature", |
|
[ |
|
{ |
|
"psig_desc": [ |
|
"Psig_value", |
|
{ |
|
"pval_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4596 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4600 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "diff" |
|
}, |
|
"pval_type": { |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "state", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4602 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4607 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"array", |
|
[ |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "left", |
|
[] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4611 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4615 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4611 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4621 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_arrow", |
|
[ "Nolabel" ], |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"array", |
|
[ |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"right", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4625 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4630 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4625 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4636 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "patch", |
|
[] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4640 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4645 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4625 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4645 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4611 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4645 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4602 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4645 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"pval_prim": [], |
|
"pval_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" [diff state l r] computes the optimal patch between [l] and [r],\n using the initial state [state].\n ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 128, |
|
"pos_bol": 4646, |
|
"pos_cnum": 4650 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 130, |
|
"pos_bol": 4760, |
|
"pos_cnum": 4766 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 128, |
|
"pos_bol": 4646, |
|
"pos_cnum": 4650 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 130, |
|
"pos_bol": 4760, |
|
"pos_cnum": 4766 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 128, |
|
"pos_bol": 4646, |
|
"pos_cnum": 4650 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 130, |
|
"pos_bol": 4760, |
|
"pos_cnum": 4766 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 128, |
|
"pos_bol": 4646, |
|
"pos_cnum": 4650 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 130, |
|
"pos_bol": 4760, |
|
"pos_cnum": 4766 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"pval_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4592 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4645 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4592 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 127, |
|
"pos_bol": 4588, |
|
"pos_cnum": 4645 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 126, |
|
"pos_bol": 4566, |
|
"pos_cnum": 4584 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 131, |
|
"pos_bol": 4767, |
|
"pos_cnum": 4772 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
}, |
|
"pmtd_attributes": [], |
|
"pmtd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 126, |
|
"pos_bol": 4566, |
|
"pos_cnum": 4568 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 131, |
|
"pos_bol": 4767, |
|
"pos_cnum": 4772 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 126, |
|
"pos_bol": 4566, |
|
"pos_cnum": 4568 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 131, |
|
"pos_bol": 4767, |
|
"pos_cnum": 4772 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_module", |
|
{ |
|
"pmd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4784 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4790 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Simple" |
|
}, |
|
"pmd_type": { |
|
"pmty_desc": [ |
|
"Pmty_functor", |
|
[ |
|
"Named", |
|
{ |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": null |
|
}, |
|
{ |
|
"pmty_desc": [ |
|
"Pmty_with", |
|
{ |
|
"pmty_desc": [ |
|
"Pmty_ident", "Parameters" |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4793 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4803 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
}, |
|
[ |
|
[ |
|
"Pwith_typesubst", |
|
"update_result", |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4814 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4827 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "update_result" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": { |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "state", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4831 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4836 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"ptype_attributes": [], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4809 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4836 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
] |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4793 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4836 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
} |
|
], |
|
{ |
|
"pmty_desc": [ "Pmty_ident", "S" ], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4841 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4842 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
} |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4792 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4842 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
}, |
|
"pmd_attributes": [], |
|
"pmd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4777 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4842 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4777 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 134, |
|
"pos_bol": 4775, |
|
"pos_cnum": 4842 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_module", |
|
{ |
|
"pmd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 141, |
|
"pos_bol": 4989, |
|
"pos_cnum": 4998 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 141, |
|
"pos_bol": 4989, |
|
"pos_cnum": 5011 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Left_variadic" |
|
}, |
|
"pmd_type": { |
|
"pmty_desc": [ |
|
"Pmty_functor", |
|
[ |
|
"Named", |
|
{ |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": null |
|
}, |
|
{ |
|
"pmty_desc": [ |
|
"Pmty_with", |
|
{ |
|
"pmty_desc": [ |
|
"Pmty_ident", "Parameters" |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5018 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5028 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
}, |
|
[ |
|
[ |
|
"Pwith_typesubst", |
|
"update_result", |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5039 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5052 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "update_result" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": { |
|
"ptyp_desc": [ |
|
"Ptyp_tuple", |
|
[ |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "state", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5056 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5061 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"array", |
|
[ |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"left", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5064 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5068 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5064 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5074 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5056 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5074 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"ptype_attributes": [], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5034 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5074 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
] |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5018 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5074 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
} |
|
], |
|
{ |
|
"pmty_desc": [ "Pmty_ident", "S" ], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5079 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5080 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
} |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5017 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5080 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
}, |
|
"pmd_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" {1 Variadic diffing}\n\n Variadic diffing allows to expand the lists being diffed during diffing.\n in one specific direction.\n ", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 136, |
|
"pos_bol": 4844, |
|
"pos_cnum": 4846 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 140, |
|
"pos_bol": 4984, |
|
"pos_cnum": 4988 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 136, |
|
"pos_bol": 4844, |
|
"pos_cnum": 4846 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 140, |
|
"pos_bol": 4984, |
|
"pos_cnum": 4988 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 136, |
|
"pos_bol": 4844, |
|
"pos_cnum": 4846 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 140, |
|
"pos_bol": 4984, |
|
"pos_cnum": 4988 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 136, |
|
"pos_bol": 4844, |
|
"pos_cnum": 4846 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 140, |
|
"pos_bol": 4984, |
|
"pos_cnum": 4988 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"pmd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 141, |
|
"pos_bol": 4989, |
|
"pos_cnum": 4991 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5080 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 141, |
|
"pos_bol": 4989, |
|
"pos_cnum": 4991 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 142, |
|
"pos_bol": 5013, |
|
"pos_cnum": 5080 |
|
}, |
|
"loc_ghost": false |
|
} |
|
}, |
|
{ |
|
"psig_desc": [ |
|
"Psig_module", |
|
{ |
|
"pmd_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 144, |
|
"pos_bol": 5082, |
|
"pos_cnum": 5091 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 144, |
|
"pos_bol": 5082, |
|
"pos_cnum": 5105 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "Right_variadic" |
|
}, |
|
"pmd_type": { |
|
"pmty_desc": [ |
|
"Pmty_functor", |
|
[ |
|
"Named", |
|
{ |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": null |
|
}, |
|
{ |
|
"pmty_desc": [ |
|
"Pmty_with", |
|
{ |
|
"pmty_desc": [ |
|
"Pmty_ident", "Parameters" |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5112 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5122 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
}, |
|
[ |
|
[ |
|
"Pwith_typesubst", |
|
"update_result", |
|
{ |
|
"ptype_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5133 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5146 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"txt2": "update_result" |
|
}, |
|
"ptype_params": [], |
|
"ptype_cstrs": [], |
|
"ptype_kind": [ "Ptype_abstract" ], |
|
"ptype_private": [ "Public" ], |
|
"ptype_manifest": { |
|
"ptyp_desc": [ |
|
"Ptyp_tuple", |
|
[ |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", "state", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5150 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5155 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"array", |
|
[ |
|
{ |
|
"ptyp_desc": [ |
|
"Ptyp_constr", |
|
"right", [] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5158 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5163 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5158 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5169 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
} |
|
] |
|
], |
|
"ptyp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5150 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5169 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"ptyp_loc_stack": [], |
|
"ptyp_attributes": [] |
|
}, |
|
"ptype_attributes": [], |
|
"ptype_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5128 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5169 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
] |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5112 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5169 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
} |
|
], |
|
{ |
|
"pmty_desc": [ "Pmty_ident", "S" ], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5174 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5175 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
} |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5111 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5175 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
}, |
|
"pmd_attributes": [], |
|
"pmd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 144, |
|
"pos_bol": 5082, |
|
"pos_cnum": 5084 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5175 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 144, |
|
"pos_bol": 5082, |
|
"pos_cnum": 5084 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 145, |
|
"pos_bol": 5107, |
|
"pos_cnum": 5175 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 98, |
|
"pos_bol": 3755, |
|
"pos_cnum": 3778 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 147, |
|
"pos_bol": 5177, |
|
"pos_cnum": 5180 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
} |
|
], |
|
"pmty_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 98, |
|
"pos_bol": 3755, |
|
"pos_cnum": 3768 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 147, |
|
"pos_bol": 5177, |
|
"pos_cnum": 5180 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pmty_attributes": [] |
|
}, |
|
"pmd_attributes": [ |
|
{ |
|
"attr_name": { |
|
"loc2": { |
|
"loc_start": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "_none_", |
|
"pos_lnum": 0, |
|
"pos_bol": 0, |
|
"pos_cnum": -1 |
|
}, |
|
"loc_ghost": true |
|
}, |
|
"txt2": "ocaml.doc" |
|
}, |
|
"attr_payload": [ |
|
"PStr", |
|
[ |
|
{ |
|
"pstr_desc": [ |
|
"Pstr_eval", |
|
{ |
|
"pexp_desc": [ |
|
"Pexp_constant", |
|
[ |
|
"Pconst_string", |
|
" [Define(Defs)] creates the diffing types from the types\n defined in [Defs] and the functors that need to be instantatied\n with the diffing algorithm parameters\n", |
|
{ |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 94, |
|
"pos_bol": 3582, |
|
"pos_cnum": 3582 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 97, |
|
"pos_bol": 3752, |
|
"pos_cnum": 3754 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
null |
|
] |
|
], |
|
"pexp_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 94, |
|
"pos_bol": 3582, |
|
"pos_cnum": 3582 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 97, |
|
"pos_bol": 3752, |
|
"pos_cnum": 3754 |
|
}, |
|
"loc_ghost": false |
|
}, |
|
"pexp_loc_stack": [], |
|
"pexp_attributes": [] |
|
}, |
|
[] |
|
], |
|
"pstr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 94, |
|
"pos_bol": 3582, |
|
"pos_cnum": 3582 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 97, |
|
"pos_bol": 3752, |
|
"pos_cnum": 3754 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
], |
|
"attr_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 94, |
|
"pos_bol": 3582, |
|
"pos_cnum": 3582 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 97, |
|
"pos_bol": 3752, |
|
"pos_cnum": 3754 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"pmd_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 98, |
|
"pos_bol": 3755, |
|
"pos_cnum": 3755 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 147, |
|
"pos_bol": 5177, |
|
"pos_cnum": 5180 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
], |
|
"psig_loc": { |
|
"loc_start": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 98, |
|
"pos_bol": 3755, |
|
"pos_cnum": 3755 |
|
}, |
|
"loc_end": { |
|
"pos_fname": "./utils/diffing.mli", |
|
"pos_lnum": 147, |
|
"pos_bol": 5177, |
|
"pos_cnum": 5180 |
|
}, |
|
"loc_ghost": false |
|
} |
|
} |
|
] |
|
|