package reason

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

Abstracting an OCaml frontend

module type Ast = sig ... end

Abstract view of a version of an OCaml Ast

type 'a _types = 'a constraint 'a = < out_value : _ ; out_type : _ ; out_class_type : _ ; out_module_type : _ ; out_sig_item : _ ; out_type_extension : _ ; out_phrase : _ >
type 'a get_out_value = 'x constraint 'a _types = < out_value : 'x.. >
type 'a get_out_type = 'x constraint 'a _types = < out_type : 'x.. >
type 'a get_out_class_type = 'x constraint 'a _types = < out_class_type : 'x.. >
type 'a get_out_module_type = 'x constraint 'a _types = < out_module_type : 'x.. >
type 'a get_out_sig_item = 'x constraint 'a _types = < out_sig_item : 'x.. >
type 'a get_out_type_extension = 'x constraint 'a _types = < out_type_extension : 'x.. >
type 'a get_out_phrase = 'x constraint 'a _types = < out_phrase : 'x.. >
type _ witnesses = private ..

A version of the OCaml frontend packs the ast with type witnesses so that equalities can be recovered dynamically.

type _ migration_info

migration_info is an opaque type that is used to generate migration functions.

module type OCaml_version = sig ... end

An OCaml frontend versions an Ast, version number and some witnesses for conversion.

Representing an ocaml version in type language

Concrete frontend instances

module OCaml_402 : OCaml_version with module Ast = Ast_402
module OCaml_403 : OCaml_version with module Ast = Ast_403
module OCaml_404 : OCaml_version with module Ast = Ast_404
module OCaml_405 : OCaml_version with module Ast = Ast_405
module OCaml_406 : OCaml_version with module Ast = Ast_406
module OCaml_407 : OCaml_version with module Ast = Ast_407
module OCaml_408 : OCaml_version with module Ast = Ast_408
module OCaml_409 : OCaml_version with module Ast = Ast_409
module OCaml_410 : OCaml_version with module Ast = Ast_410
module OCaml_411 : OCaml_version with module Ast = Ast_411
module OCaml_412 : OCaml_version with module Ast = Ast_412
module OCaml_413 : OCaml_version with module Ast = Ast_413
module OCaml_414 : OCaml_version with module Ast = Ast_414
module OCaml_500 : OCaml_version with module Ast = Ast_500
module OCaml_51 : OCaml_version with module Ast = Ast_51
module OCaml_current = OCaml_51
val all_versions : (module OCaml_version) list

Migrating between different versions

type ('a, 'b) type_comparison =
  1. | Lt : ('a, 'b) type_comparison
  2. | Eq : ('a, 'a) type_comparison
  3. | Gt : ('a, 'b) type_comparison
val compare_ocaml_version : 'a ocaml_version -> 'b ocaml_version -> ('a, 'b) type_comparison
type ('from, 'to_) migration_functions = {
  1. copy_out_value : 'from get_out_value -> 'to_ get_out_value;
  2. copy_out_type : 'from get_out_type -> 'to_ get_out_type;
  3. copy_out_class_type : 'from get_out_class_type -> 'to_ get_out_class_type;
  4. copy_out_module_type : 'from get_out_module_type -> 'to_ get_out_module_type;
  5. copy_out_sig_item : 'from get_out_sig_item -> 'to_ get_out_sig_item;
  6. copy_out_type_extension : 'from get_out_type_extension -> 'to_ get_out_type_extension;
  7. copy_out_phrase : 'from get_out_phrase -> 'to_ get_out_phrase;
}

A record for migrating each AST construct between two known versions

val migration_identity : ('a, 'a) migration_functions

Migrating to the same version is no-op

val migration_compose : ('a, 'b) migration_functions -> ('b, 'c) migration_functions -> ('a, 'c) migration_functions

Migrations can be composed

Represent the next or previous version of an Ast

type 'from immediate_migration =
  1. | No_migration : 'from immediate_migration
    (*

    Cannot migrate earliest or latest supported version

    *)
  2. | Immediate_migration : ('from, 'to_) migration_functions * 'to_ ocaml_version -> 'from immediate_migration
    (*

    Pack the migration functions and the new version

    *)
val immediate_migration : 'types ocaml_version -> [< `Next | `Previous ] -> 'types immediate_migration
val migrate : 'from ocaml_version -> 'to_ ocaml_version -> ('from, 'to_) migration_functions

Convenience definitions

module Convert (A : OCaml_version) (B : OCaml_version) : sig ... end

Module level migration