Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
migrate_ast.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
(* * This file originates from OCamlFormat. * * Copyright (c) 2017-present, Facebook, Inc. All rights reserved. * * This source code is licensed under the MIT license. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. *) open Compat (* original modules *) module Asttypes_ = Asttypes module Parsetree_ = Parsetree include ( Migrate_parsetree.Ast_408 : module type of struct include Migrate_parsetree.Ast_408 end with module Location := Migrate_parsetree.Ast_408.Location and module Outcometree := Migrate_parsetree.Ast_408.Outcometree and module Asttypes := Migrate_parsetree.Ast_408.Asttypes and module Ast_helper := Migrate_parsetree.Ast_408.Ast_helper and module Parsetree := Migrate_parsetree.Ast_408.Parsetree ) module Asttypes = Migrate_parsetree.Ast_408.Asttypes module Ast_helper = Migrate_parsetree.Ast_408.Ast_helper module Parsetree = Migrate_parsetree.Ast_408.Parsetree module Parse = struct open Migrate_parsetree let toplevel_phrase lexbuf = Parse.toplevel_phrase Versions.ocaml_408 lexbuf let implementation lexbuf = Parse.implementation Versions.ocaml_408 lexbuf let interface lexbuf = Parse.interface Versions.ocaml_408 lexbuf end let to_current = Migrate_parsetree.Versions.(migrate ocaml_408 ocaml_current) let to_408 = Migrate_parsetree.Versions.(migrate ocaml_current ocaml_408) module Typemod = struct open Typemod let type_structure e s l = type_structure e (to_current.copy_structure s) l end module Printast = struct open Printast let top_phrase f x = top_phrase f (to_current.copy_toplevel_phrase x) end module Pprintast = struct open Pprintast let top_phrase f x = top_phrase f (to_current.copy_toplevel_phrase x) end module Printtyp = struct include Printtyp let wrap_printing_env e f = wrap_printing_env #if (OCAML_MAJOR = 4 && OCAML_MINOR >= 7) || OCAML_MAJOR > 4 ~error:false #endif e f end module Pparse = struct open Pparse let apply_rewriters_str ~tool_name s = apply_rewriters_str ~tool_name (to_current.copy_structure s) |> to_408.copy_structure end module Position = struct open Lexing let column {pos_fname=_; pos_lnum=_; pos_bol; pos_cnum} = pos_cnum - pos_bol let fmt fs {pos_fname=_; pos_lnum; pos_bol; pos_cnum} = if pos_lnum = -1 then Format.fprintf fs "[%d]" pos_cnum else Format.fprintf fs "[%d,%d+%d]" pos_lnum pos_bol (pos_cnum - pos_bol) let compare_col p1 p2 = (column p1) - (column p2) let equal p1 p2 = String.equal p1.pos_fname p2.pos_fname && p1.pos_lnum = p2.pos_lnum && p1.pos_bol = p2.pos_bol && p1.pos_cnum = p2.pos_cnum let compare p1 p2 = if equal p1 p2 then 0 else p1.pos_cnum - p2.pos_cnum let distance p1 p2 = p2.pos_cnum - p1.pos_cnum end module Location = struct include Migrate_parsetree.Ast_408.Location let fmt fs {loc_start; loc_end; loc_ghost} = Format.fprintf fs "(%a..%a)%s" Position.fmt loc_start Position.fmt loc_end (if loc_ghost then " ghost" else "") let to_string x = Format.asprintf "%a" fmt x let compare x y = let compare_start = Position.compare x.loc_start y.loc_start in if compare_start = 0 then Position.compare x.loc_end y.loc_end else compare_start let hash = Hashtbl.hash let is_single_line x = x.loc_start.pos_lnum = x.loc_end.pos_lnum let compare_start x y = Position.compare x.loc_start y.loc_start let compare_start_col x y = Position.compare_col x.loc_start y.loc_start let compare_end x y = Position.compare x.loc_end y.loc_end let compare_end_col x y = Position.compare_col x.loc_end y.loc_end let contains l1 l2 = compare_start l1 l2 <= 0 && compare_end l1 l2 >= 0 let width x = Position.distance x.loc_start x.loc_end let compare_width_decreasing l1 l2 = (width l2) - (width l1) end