package archetype

  1. Overview
  2. Docs
module L = Location
module PT = ParseTree
module M = Ast
module Type : sig ... end
type opsig = {
  1. osl_sig : M.ptyp list;
  2. osl_ret : M.ptyp;
}
val pp_opsig : Ppx_deriving_runtime.Format.formatter -> opsig -> Ppx_deriving_runtime.unit
type error_desc =
  1. | AlienPattern
  2. | AnonymousFieldInEffect
  3. | AssertInGlobalSpec
  4. | AssetExpected of M.ptyp
  5. | AssetWithoutFields
  6. | BeforeOrLabelInExpr
  7. | BeforeIrrelevant of [ `Local | `State ]
  8. | BindingInExpr
  9. | CannotAssignLoopIndex of Ident.ident
  10. | CannotCaptureLocal
  11. | CannotInferAnonRecord
  12. | CannotInferCollectionType
  13. | CannotInfer
  14. | CannotUpdatePKey
  15. | CollectionExpected
  16. | ContractInvariantInLocalSpec
  17. | DoesNotSupportMethodCall
  18. | DivergentExpr
  19. | DuplicatedArgName of Ident.ident
  20. | DuplicatedContractEntryName of Ident.ident
  21. | DuplicatedCtorName of Ident.ident
  22. | DuplicatedFieldInAssetDecl of Ident.ident
  23. | DuplicatedFieldInRecordLiteral of Ident.ident
  24. | DuplicatedInitMarkForCtor
  25. | DuplicatedPKey
  26. | DuplicatedVarDecl of Ident.ident
  27. | EffectInGlobalSpec
  28. | EmptyEnumDecl
  29. | ExpressionExpected
  30. | ForeignState of Ident.ident option * Ident.ident option
  31. | FormulaExpected
  32. | IncompatibleTypes of M.ptyp * M.ptyp
  33. | InvalidActionDescription
  34. | InvalidActionExpression
  35. | InvalidArcheTypeDecl
  36. | InvalidAssetCollectionExpr of M.ptyp
  37. | InvalidAssetExpression
  38. | InvalidCallByExpression
  39. | InvalidContractExpression
  40. | InvalidExpressionForEffect
  41. | InvalidExpression
  42. | InvalidFieldsCountInRecordLiteral
  43. | InvalidInitCount
  44. | InvalidLValue
  45. | InvalidFormula
  46. | InvalidInstruction
  47. | InvalidNumberOfArguments of int * int
  48. | InvalidRoleExpression
  49. | InvalidSecurityAction
  50. | InvalidSecurityRole
  51. | InvalidSortingExpression
  52. | InvalidStateExpression
  53. | InvalidTypeForPk
  54. | InvalidTypeForVarWithFromTo
  55. | LetInElseInInstruction
  56. | LetInElseOnNonOption
  57. | MethodCallInPredicate
  58. | MissingFieldInRecordLiteral of Ident.ident
  59. | MixedAnonInRecordLiteral
  60. | MixedFieldNamesInRecordLiteral of Ident.ident list
  61. | MoreThanOneInitState of Ident.ident list
  62. | MultipleAssetStateDeclaration
  63. | MultipleInitialMarker
  64. | MultipleMatchingOperator of PT.operator * M.ptyp list * opsig list
  65. | MultipleMatchingFunction of Ident.ident * M.ptyp list * (M.ptyp list * M.ptyp) list
  66. | MultipleFromToInVarDecl
  67. | MultipleStateDeclaration
  68. | NameIsAlreadyBound of Ident.ident * Location.t option
  69. | NoMatchingOperator of PT.operator * M.ptyp list
  70. | NoMatchingFunction of Ident.ident * M.ptyp list
  71. | NoSuchMethod of Ident.ident
  72. | NoSuchSecurityPredicate of Ident.ident
  73. | NonCodeLabel of Ident.ident
  74. | NonLoopLabel of Ident.ident
  75. | NotAKeyOfType
  76. | NotAnAssetType
  77. | NotAnEnumType
  78. | NotAPrimitiveType
  79. | NotARole of Ident.ident
  80. | NumericExpressionExpected
  81. | NumericOrCurrencyExpressionExpected
  82. | OpInRecordLiteral
  83. | OrphanedLabel of Ident.ident
  84. | PartialMatch of Ident.ident list
  85. | PostConditionInGlobalSpec
  86. | ReadOnlyGlobal of Ident.ident
  87. | SecurityInExpr
  88. | SpecOperatorInExpr
  89. | TransferWithoutDest
  90. | UninitializedVar
  91. | UnknownAction of Ident.ident
  92. | UnknownAsset of Ident.ident
  93. | UnknownContractEntryPoint of Ident.ident * Ident.ident
  94. | UnknownEnum of Ident.ident
  95. | UnknownField of Ident.ident * Ident.ident
  96. | UnknownFieldName of Ident.ident
  97. | UnknownLabel of Ident.ident
  98. | UnknownLocalOrVariable of Ident.ident
  99. | UnknownProcedure of Ident.ident
  100. | UnknownState of Ident.ident
  101. | UnknownTypeName of Ident.ident
  102. | UnpureInFormula
  103. | UnpureOnView
  104. | UpdateEffectWithoutDefault
  105. | UpdateEffectOnPkey
  106. | UselessPattern
  107. | VoidMethodInExpr
  108. | VSetInExpr
  109. | VSetOnNonAsset
val show_error_desc : error_desc -> Ppx_deriving_runtime.string
type error = L.t * error_desc
val pp_operator : Core.Format.formatter -> PT.operator -> unit
val pp_error_desc : Stdlib.Format.formatter -> error_desc -> Ppx_deriving_runtime.unit
type argtype = [
  1. | `Type of M.type_
  2. | `Effect of Ident.ident
]
val cmptypes : M.vtyp list
val grptypes : M.vtyp list
val rgtypes : M.vtyp list
val cmpsigs : (PT.operator * (M.vtyp list * M.vtyp)) list
val opsigs : (PT.operator * opsig) list
type acttx = [
  1. | `Action of PT.action_decl
  2. | `Transition of PT.transition_decl
]
type groups = {
  1. gr_archetypes : (PT.lident * PT.exts) Location.loced list;
  2. gr_states : PT.enum_decl Location.loced list;
  3. gr_enums : (PT.lident * PT.enum_decl) Location.loced list;
  4. gr_assets : PT.asset_decl Location.loced list;
  5. gr_vars : PT.variable_decl Location.loced list;
  6. gr_funs : PT.s_function Location.loced list;
  7. gr_acttxs : acttx Location.loced list;
  8. gr_specs : PT.specification Location.loced list;
  9. gr_secs : PT.security Location.loced list;
  10. gr_externals : PT.contract_decl Location.loced list;
}
val globals : (string * M.const * M.ptyp) list
val statename : string
type ('args, 'rty) gmethod_ = {
  1. mth_name : M.const;
  2. mth_purity : [ `Pure | `Effect ];
  3. mth_totality : [ `Total | `Partial ];
  4. mth_sig : 'args * 'rty option;
}
type mthstyp = [
  1. | `T of M.ptyp
]
type mthtyp = [
  1. | mthstyp
  2. | `The
  3. | `Pk
  4. | `Asset
  5. | `SubColl
  6. | `Cmp
  7. | `Pred of bool
  8. | `RExpr of bool
  9. | `Ef of bool
  10. | `Ref of int
]
and mthatyp = [
  1. | `Fixed of mthtyp list
  2. | `Multi of mthtyp
]
type smethod_ = (mthstyp list, mthstyp) gmethod_
type method_ = (mthatyp, mthtyp) gmethod_
val methods : method_ Ident.Mid.t
val coreops : (string * M.const * [> `Total ] * 'a option * M.ptyp list * M.ptyp) list
val optionops : (string * M.const * [> `Partial | `Total ] * M.ptyp option * 'a list * M.ptyp) list
val listops : (string * M.const * [> `Partial | `Total ] * M.ptyp option * M.ptyp list * M.ptyp) list
val cryptoops : (string * M.const * [> `Total ] * 'a option * M.ptyp list * M.ptyp) list
val allops : (string * M.const * [> `Partial | `Total ] * M.ptyp option * M.ptyp list * M.ptyp) list
type assetdecl = {
  1. as_name : M.lident;
  2. as_fields : fielddecl list;
  3. as_pk : M.lident;
  4. as_sortk : M.lident list;
  5. as_invs : (M.lident option * M.pterm) list;
  6. as_state : M.lident option;
  7. as_init : M.pterm list list;
}
and fielddecl = {
  1. fd_name : M.lident;
  2. fd_type : M.ptyp;
  3. fd_dfl : M.pterm option;
  4. fd_ghost : bool;
}
val get_field : Ident.ident -> assetdecl -> fielddecl option
type vardecl = {
  1. vr_name : M.lident;
  2. vr_type : M.ptyp;
  3. vr_kind : [ `Constant | `Variable | `Ghost | `Enum ];
  4. vr_invs : M.lident M.label_term list;
  5. vr_def : (M.pterm * [ `Inline | `Std ]) option;
  6. vr_tgt : M.lident option * M.lident option;
  7. vr_core : M.const option;
}
type 'env ispecification = [
  1. | `Predicate of M.lident * (M.lident * M.ptyp) list * M.pterm
  2. | `Definition of M.lident * (M.lident * M.ptyp) option * M.pterm
  3. | `Variable of M.lident * M.pterm option
  4. | `Assert of M.lident * M.pterm * (M.lident * M.pterm list) list * M.lident list
  5. | `Effect of 'env * M.instruction
  6. | `Postcondition of M.lident * M.pterm * (M.lident * M.pterm list) list * M.lident list
]
type 'env fundecl = {
  1. fs_name : M.lident;
  2. fs_args : (M.lident * M.ptyp) list;
  3. fs_retty : M.ptyp;
  4. fs_body : M.instruction;
  5. fs_spec : 'env ispecification list option;
}
type txeffect = {
  1. tx_state : M.lident;
  2. tx_when : M.pterm option;
  3. tx_effect : M.instruction option;
}
type 'env tactiondecl = {
  1. ad_name : M.lident;
  2. ad_args : (M.lident * M.ptyp) list;
  3. ad_callby : M.pterm option Location.loced list;
  4. ad_effect : [ `Raw of M.instruction | `Tx of transition ] option;
  5. ad_funs : 'env fundecl option list;
  6. ad_reqs : (M.lident option * M.pterm) list;
  7. ad_fais : (M.lident option * M.pterm) list;
  8. ad_spec : 'env ispecification list;
  9. ad_actfs : bool;
}
and transition = M.sexpr * (M.lident * assetdecl) option * txeffect list
type statedecl = {
  1. sd_name : M.lident;
  2. sd_state : bool;
  3. sd_ctors : ctordecl list;
  4. sd_init : Ident.ident;
}
and ctordecl = M.lident * (M.lident option * M.pterm) list
type contractdecl = {
  1. ct_name : M.lident;
  2. ct_entries : (M.lident * (M.lident * M.ptyp) list) list;
}
val pterm_arg_as_pterm : 'a M.term_arg -> 'a M.term_gen option
val core_types : (string * M.ptyp) list
module Env : sig ... end
type env = Env.t
val coreloc : Location.t
val empty : env
val check_and_emit_name_free : env -> M.lident -> bool
val select_operator : Env.t -> L.t -> (PT.operator * M.ptyp list) -> opsig option
val for_container : env -> PT.container -> M.container
val for_assignment_operator : PT.assignment_operator -> M.assignment_operator
val tt_logical_operator : PT.logical_operator -> M.logical_operator
exception InvalidType
val for_type_exn : env -> PT.type_t -> M.ptyp
val for_type : env -> PT.type_t -> M.ptyp option
val for_asset_type : env -> PT.type_t -> M.lident option
val for_asset_keyof_type : env -> PT.type_t -> M.lident option
val for_literal : env -> PT.literal Location.loced -> M.bval
type emode_t = {
  1. em_kind : [ `Expr | `Formula ];
  2. em_pred : bool;
}
val expr_mode : emode_t
val form_mode : emode_t
val for_xexpr : emode_t -> ?capture:bool -> env -> ?ety:M.ptyp -> PT.expr -> PT.lident M.term_node M.struct_poly
val cast_expr : env -> M.ptyp option -> M.pterm -> M.pterm
val join_expr : env -> M.ptyp option -> PT.lident M.term_node M.struct_poly list -> M.ptyp option * PT.lident M.term_gen list
val for_gen_matchwith : emode_t -> env -> Location.t -> PT.expr -> PT.branch list -> (statedecl * Tools.Mstr.key Location.loced M.term_gen * (int option * int option Tools.Mstr.t) * PT.expr list) option
val for_asset_expr : emode_t -> env -> PT.expr -> PT.lident M.term_node M.struct_poly * assetdecl option
val for_asset_collection_expr : emode_t -> env -> [ `Parsed of PT.expr | `Typed of PT.lident M.term_node M.struct_poly ] -> PT.lident M.term_gen * (assetdecl * M.container) option
val for_contract_expr : emode_t -> env -> PT.expr -> PT.lident M.term_node M.struct_poly * contractdecl option
val for_api_call : emode_t -> env -> Location.t -> ([< `Parsed of PT.expr | `Typed of PT.lident M.term_node M.struct_poly Typed ] * PT.lident * PT.expr list) -> (M.pterm * smethod_ * M.lident M.term_arg list) option
val for_gen_method_call : emode_t -> env -> Location.t -> ([ `Parsed of PT.expr | `Typed of PT.lident M.term_node M.struct_poly ] * PT.lident * PT.expr list) -> (M.pterm * (assetdecl * M.container) * method_ * M.lident M.term_arg list * M.type_ Tools.Mint.t) option
val for_arg_effect : emode_t -> env -> update:bool -> assetdecl -> PT.expr -> (PT.lident * M.operator * PT.lident M.term_gen) list option
val for_formula : env -> PT.expr -> M.pterm
val for_action_description : env -> PT.security_arg -> M.action_description
val for_security_action : env -> PT.security_arg -> M.security_action
val for_security_role : env -> PT.security_arg -> M.security_role list
val for_role : env -> PT.lident -> M.security_role option
val for_expr : env -> ?ety:M.type_ -> PT.expr -> M.pterm
val for_lbl_expr : env -> ?ety:M.type_ -> PT.label_expr -> env * (M.lident option * M.pterm)
val for_lbls_expr : env -> ?ety:M.type_ -> PT.label_exprs -> env * (M.lident option * M.pterm) list
val for_lbl_bexpr : env -> PT.label_expr -> env * (M.lident option * M.pterm)
val for_lbls_bexpr : env -> PT.label_exprs -> env * (M.lident option * M.pterm) list
val for_lbl_formula : env -> PT.label_expr -> env * (M.lident option * M.pterm)
val for_xlbls_formula : env -> PT.label_exprs -> env * (M.lident option * M.pterm) list
val for_lbls_formula : env -> PT.label_exprs -> env * (M.lident option * M.pterm) list
val for_arg_decl : env -> PT.lident_typ -> env * (PT.lident * M.ptyp) option
val for_args_decl : env -> PT.args -> env * (PT.lident * M.ptyp) option list
val for_lvalue : env -> PT.expr -> (M.lvalue * M.ptyp) option
val for_instruction : env -> PT.expr -> env * M.instruction
val for_effect : env -> PT.expr -> Env.t * (env * M.instruction)
type spmode = [
  1. | `Global
  2. | `Local
]
val for_specification_item : spmode -> (env * env) -> PT.specification_item -> (env * env) * env ispecification
val for_specification : spmode -> (env * env) -> PT.specification -> env * env ispecification list
module SecurityPred : sig ... end
val for_security_item : env -> PT.security_item -> (env * M.security_item) option
val for_security : env -> PT.security -> env * M.security
val for_named_state : ?enum:Ident.ident -> env -> PT.lident -> Ident.ident Location.loced
val for_state_formula : ?enum:Ident.ident -> env -> PT.expr -> M.sexpr
val for_function : env -> PT.s_function Location.loced -> Env.t * env fundecl option
val for_callby : env -> PT.expr -> M.pterm option Location.loced list
val for_action_properties : (env * env) -> PT.action_properties -> env * (M.pterm option Location.loced list option * (M.lident option * M.pterm) list option * (M.lident option * M.pterm) list option * env ispecification list option * env fundecl option list)
val for_transition : ?enum:Ident.ident -> env -> (PT.lident * (PT.expr * 'a) option * (PT.expr * 'b) option) -> env * txeffect
type enum_core = (PT.lident * PT.enum_option list) list
val for_core_enum_decl : env -> enum_core Location.loced -> env * (Ident.ident * (PT.lident * (M.lident option * M.pterm) list) list) option
val for_enum_decl : env -> (PT.lident * PT.enum_decl) Location.loced -> env * statedecl option
val for_enums_decl : env -> (PT.lident * PT.enum_decl) Location.loced list -> env * statedecl option list
val for_var_decl : env -> PT.variable_decl Location.loced -> env * vardecl option
val for_vars_decl : env -> PT.variable_decl Location.loced list -> env * vardecl option list
val for_fun_decl : env -> PT.s_function Location.loced -> Env.t * env fundecl option
val for_funs_decl : env -> PT.s_function Location.loced list -> env * env fundecl option list
val for_asset_decl : ?force:bool -> env -> PT.asset_decl Location.loced -> env * assetdecl option
val for_assets_decl : env -> PT.asset_decl Location.loced list -> env * assetdecl option list
val for_contract_decl : env -> PT.contract_decl Location.loced -> env * contractdecl option
val for_contracts_decl : env -> PT.contract_decl Location.loced list -> env * contractdecl option list
val for_acttx_decl : env -> acttx Location.loced -> Env.t * env tactiondecl option
val for_acttxs_decl : env -> acttx Location.loced list -> env * env tactiondecl option list
val for_specs_decl : env -> PT.specification Location.loced list -> env * env ispecification list list
val for_secs_decl : env -> PT.security Location.loced list -> env * M.security list
val group_declarations : PT.declaration list -> groups
type decls = {
  1. state : statedecl option;
  2. contracts : contractdecl option list;
  3. variables : vardecl option list;
  4. enums : statedecl option list;
  5. assets : assetdecl option list;
  6. functions : env fundecl option list;
  7. acttxs : env tactiondecl option list;
  8. specs : env ispecification list list;
  9. secspecs : M.security list;
}
val for_grouped_declarations : env -> (L.t * groups) -> env * decls
val enums_of_statedecl : statedecl list -> M.enum list
val assets_of_adecls : assetdecl option list -> M.lident M.asset_struct list
val variables_of_vdecls : vardecl option list -> M.lident M.variable list
val contracts_of_cdecls : contractdecl option list -> M.lident M.contract_struct list
val specifications_of_ispecifications : env ispecification list -> M.lident M.specification
val functions_of_fdecls : env fundecl option list -> M.lident M.function_struct list
val transactions_of_tdecls : env tactiondecl option list -> M.lident M.transaction_struct list
val for_declarations : env -> PT.declaration list Location.loced -> M.model
val typing : env -> PT.archetype -> M.model
OCaml

Innovation. Community. Security.