package archetype

  1. Overview
  2. Docs
module L = Location
module PT = ParseTree
module A = Ast
module Type : sig ... end
type opsig = {
  1. osl_sig : A.ptyp list;
  2. osl_ret : A.ptyp;
}
val pp_opsig : Ppx_deriving_runtime.Format.formatter -> opsig -> Ppx_deriving_runtime.unit
type error_desc =
  1. | TODO
  2. | AEntryExpected of A.ptyp
  3. | AlienPattern
  4. | AnonymousFieldInEffect
  5. | AssertInGlobalSpec
  6. | AssetExpected of A.ptyp
  7. | AssetOrRecordExpected of A.ptyp
  8. | AssetWithoutPKey
  9. | AssetWithoutFields
  10. | BeforeIrrelevant of [ `Local | `State ]
  11. | BeforeOrLabelInExpr
  12. | BindingInExpr
  13. | CannotAssignArgument of Ident.ident
  14. | CannotAssignLoopIndex of Ident.ident
  15. | CannotCaptureLocal
  16. | CannotInfer
  17. | CannotInferAnonAssetOrRecord
  18. | CannotInferCollectionType
  19. | CannotInitShadowField
  20. | CannotUpdatePKey
  21. | CollectionExpected
  22. | ContainerOfNonAsset
  23. | ContractInvariantInLocalSpec
  24. | DivergentExpr
  25. | DoesNotSupportMethodCall
  26. | DuplicatedArgName of Ident.ident
  27. | DuplicatedCtorName of Ident.ident
  28. | DuplicatedFieldInAssetDecl of Ident.ident
  29. | DuplicatedFieldInRecordDecl of Ident.ident
  30. | DuplicatedFieldInAssetOrRecordLiteral of Ident.ident
  31. | DuplicatedInitMarkForCtor
  32. | DuplicatedPkeyField of Ident.ident
  33. | DuplicatedVarDecl of Ident.ident
  34. | EffectInGlobalSpec
  35. | EmptyEnumDecl
  36. | ExpressionExpected
  37. | ForeignState of Ident.ident option * Ident.ident option
  38. | FormulaExpected
  39. | IncompatibleTypes of A.ptyp * A.ptyp
  40. | IndexOutOfBoundForTuple
  41. | InvalidArcheTypeDecl
  42. | InvalidAssetCollectionExpr of A.ptyp
  43. | InvalidAssetExpression
  44. | InvalidCallByExpression
  45. | InvalidEffectForCtn of A.container * A.container list
  46. | InvalidEntryDescription
  47. | InvalidEntryExpression
  48. | InvalidExpression
  49. | InvalidExpressionForEffect
  50. | InvalidExprressionForTupleAccess
  51. | InvalidFieldsCountInAssetOrRecordLiteral
  52. | InvalidForIdentMap
  53. | InvalidForIdentSimple
  54. | InvalidFormula
  55. | InvalidInstruction
  56. | InvalidLValue
  57. | InvalidMapType
  58. | InvalidMethodInExec
  59. | InvalidMethodInFormula
  60. | InvalidMethodWithBigMap of Ident.ident
  61. | InvalidNumberOfArguments of int * int
  62. | InvalidRecordFieldType
  63. | InvalidRoleExpression
  64. | InvalidSecurityEntry
  65. | InvalidSecurityRole
  66. | InvalidShadowFieldAccess
  67. | InvalidShadowVariableAccess
  68. | InvalidSortingExpression
  69. | InvalidStateExpression
  70. | InvalidTypeForEntrypoint
  71. | InvalidTypeForEntrysig
  72. | InvalidTypeForMapKey
  73. | InvalidTypeForMapValue
  74. | InvalidTypeForPk
  75. | InvalidTypeForSet
  76. | InvalidVarOrArgType
  77. | LabelInNonInvariant
  78. | LetInElseInInstruction
  79. | LetInElseOnNonOption
  80. | MethodCallInPredicate
  81. | MisorderedPkeyFields
  82. | MissingFieldInAssetOrRecordLiteral of Ident.ident
  83. | MissingInitValueForShadowField
  84. | MixedAnonInAssetOrRecordLiteral
  85. | MixedFieldNamesInAssetOrRecordLiteral of Ident.ident list
  86. | MoreThanOneInitState of Ident.ident list
  87. | MultipleAssetStateDeclaration
  88. | MultipleInitialMarker
  89. | MultipleMatchingFunction of Ident.ident * A.ptyp list * (A.ptyp list * A.ptyp) list
  90. | MultipleMatchingOperator of PT.operator * A.ptyp list * opsig list
  91. | MultipleStateDeclaration
  92. | NameIsAlreadyBound of Ident.ident * Location.t option
  93. | NoLetInInstruction
  94. | NoMatchingFunction of Ident.ident * A.ptyp list
  95. | NoMatchingOperator of PT.operator * A.ptyp list
  96. | NonCodeLabel of Ident.ident
  97. | NonIterable
  98. | NonIterableBigMapAsset of Ident.ident
  99. | NonLoopLabel of Ident.ident
  100. | NoSuchMethod of Ident.ident
  101. | NoSuchSecurityPredicate of Ident.ident
  102. | NotAKeyOfType
  103. | NotAnAssetType
  104. | NotAnEnumType
  105. | NotAPrimitiveType
  106. | NotARole of Ident.ident
  107. | NumericExpressionExpected
  108. | NumericOrCurrencyExpressionExpected
  109. | OpInRecordLiteral
  110. | OrphanedLabel of Ident.ident
  111. | PackUnpackOnNonPrimitive
  112. | PartialMatch of Ident.ident list
  113. | PostConditionInGlobalSpec
  114. | PredicateCallInExpr
  115. | ReadOnlyGlobal of Ident.ident
  116. | RecordExpected
  117. | ReturnInVoidContext
  118. | SecurityInExpr
  119. | ShadowPKey
  120. | ShadowSKey
  121. | SpecOperatorInExpr
  122. | StringLiteralExpected
  123. | TransferWithoutDest
  124. | UninitializedVar
  125. | UnknownAsset of Ident.ident
  126. | UnknownAssetToProperty of Ident.ident
  127. | UnknownEntry of Ident.ident
  128. | UnknownEnum of Ident.ident
  129. | UnknownField of Ident.ident * Ident.ident
  130. | UnknownFieldName of Ident.ident
  131. | UnknownLabel of Ident.ident
  132. | UnknownLocalOrVariable of Ident.ident
  133. | UnknownProcedure of Ident.ident
  134. | UnknownState of Ident.ident
  135. | UnknownTypeName of Ident.ident
  136. | UnpureInFormula
  137. | UpdateEffectOnPkey
  138. | UpdateEffectWithoutDefault
  139. | UselessPattern
  140. | UsePkeyOfInsteadOfAsset
  141. | VoidMethodInExpr
  142. | VSetInExpr
  143. | 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 A.type_
  2. | `Effect of Ident.ident
]
val cmptypes : A.vtyp list
val grptypes : A.vtyp list
val rgtypes : A.vtyp list
val cmpsigs : (PT.operator * (A.vtyp list * A.vtyp)) list
val opsigs : (PT.operator * opsig) list
type acttx = [
  1. | `Entry of PT.entry_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_records : PT.record_decl Location.loced list;
  6. gr_vars : PT.variable_decl Location.loced list;
  7. gr_funs : PT.s_function Location.loced list;
  8. gr_acttxs : acttx Location.loced list;
  9. gr_specs : PT.specification Location.loced list;
  10. gr_secs : PT.security Location.loced list;
}
val globals : (string * A.const * A.ptyp) list
val statename : string
type ('args, 'rty) gmethod_ = {
  1. mth_name : A.const;
  2. mth_place : [ `Both | `OnlyFormula | `OnlyExec ];
  3. mth_purity : [ `Pure | `Effect of A.container list ];
  4. mth_totality : [ `Total | `Partial ];
  5. mth_map_type : [ `Both | `Standard ];
  6. mth_sig : 'args * 'rty option;
}
type mthstyp = [
  1. | `T of A.ptyp
]
type mthtyp = [
  1. | mthstyp
  2. | `The
  3. | `Pk
  4. | `ThePkForAggregate
  5. | `Asset
  6. | `Coll
  7. | `SubColl
  8. | `Cmp
  9. | `Pred of bool
  10. | `RExpr of bool
  11. | `Ef of bool
  12. | `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
type opinfo = string * A.const * [ `Partial | `Total ] * A.type_ option * A.type_ list * A.type_ * Type.trestr Tools.Mint.t
val coreops : opinfo list
val optionops : opinfo list
val setops : opinfo list
val listops : opinfo list
val mapops : opinfo list
val cryptoops : opinfo list
val packops : opinfo list
val opsops : opinfo list
val allops : opinfo list
type assetdecl = {
  1. as_name : A.lident;
  2. as_fields : fielddecl list;
  3. as_pkty : A.ptyp;
  4. as_pk : A.lident list;
  5. as_sortk : A.lident list;
  6. as_bm : bool;
  7. as_invs : (A.lident option * A.pterm) list;
  8. as_state : A.lident option;
  9. as_init : A.pterm list list;
}
and fielddecl = {
  1. fd_name : A.lident;
  2. fd_type : A.ptyp;
  3. fd_dfl : A.pterm option;
  4. fd_ghost : bool;
}
val pp_assetdecl : Ppx_deriving_runtime.Format.formatter -> assetdecl -> Ppx_deriving_runtime.unit
val show_assetdecl : assetdecl -> Ppx_deriving_runtime.string
val pp_fielddecl : Ppx_deriving_runtime.Format.formatter -> fielddecl -> Ppx_deriving_runtime.unit
val show_fielddecl : fielddecl -> Ppx_deriving_runtime.string
val get_field : Ident.ident -> assetdecl -> fielddecl option
type recorddecl = {
  1. rd_name : A.lident;
  2. rd_fields : rfielddecl list;
}
and rfielddecl = {
  1. rfd_name : A.lident;
  2. rfd_type : A.ptyp;
  3. rfd_dfl : A.pterm option;
}
val pp_recorddecl : Ppx_deriving_runtime.Format.formatter -> recorddecl -> Ppx_deriving_runtime.unit
val show_recorddecl : recorddecl -> Ppx_deriving_runtime.string
val pp_rfielddecl : Ppx_deriving_runtime.Format.formatter -> rfielddecl -> Ppx_deriving_runtime.unit
val show_rfielddecl : rfielddecl -> Ppx_deriving_runtime.string
val get_rfield : Ident.ident -> recorddecl -> rfielddecl option
type vardecl = {
  1. vr_name : A.lident;
  2. vr_type : A.ptyp;
  3. vr_kind : [ `Constant | `Variable | `Ghost | `Enum ];
  4. vr_invs : A.lident A.label_term list;
  5. vr_def : (A.pterm * [ `Inline | `Std ]) option;
  6. vr_core : A.const option;
}
type 'env ispecification = [
  1. | `Predicate of A.lident * (A.lident * A.ptyp) list * A.pterm
  2. | `Definition of A.lident * (A.lident * A.ptyp) * A.pterm
  3. | `Variable of A.lident * A.pterm option
  4. | `Asset of A.lident * A.pterm * (A.lident * A.pterm list) list * A.lident list
  5. | `Effect of 'env * A.instruction
  6. | `Postcondition of A.lident * A.pterm * (A.lident * A.pterm list) list * A.lident list
]
type 'env fundecl = {
  1. fs_name : A.lident;
  2. fs_args : (A.lident * A.ptyp) list;
  3. fs_retty : A.ptyp;
  4. fs_body : A.instruction;
  5. fs_spec : 'env ispecification list option;
}
type preddecl = {
  1. pr_name : A.lident;
  2. pr_args : (A.lident * A.ptyp) list;
  3. pr_body : A.pterm;
}
type txeffect = {
  1. tx_state : A.lident;
  2. tx_when : A.pterm option;
  3. tx_effect : A.instruction option;
}
type 'env tentrydecl = {
  1. ad_name : A.lident;
  2. ad_args : (A.lident * A.ptyp) list;
  3. ad_callby : A.pterm option Location.loced list;
  4. ad_effect : [ `Raw of A.instruction | `Tx of transition ] option;
  5. ad_funs : 'env fundecl option list;
  6. ad_reqs : (A.lident option * A.pterm) list;
  7. ad_fais : (A.lident option * A.pterm) list;
  8. ad_spec : 'env ispecification list;
  9. ad_actfs : bool;
}
and transition = A.sexpr * (A.lident * assetdecl) option * txeffect list
type statedecl = {
  1. sd_name : A.lident;
  2. sd_state : bool;
  3. sd_ctors : ctordecl list;
  4. sd_init : Ident.ident;
}
and ctordecl = A.lident * (A.lident option * A.pterm) list
type definitiondecl = {
  1. df_name : A.lident;
  2. df_arg : A.lident * A.ptyp;
  3. df_asset : A.lident;
  4. df_body : A.pterm;
}
val pterm_arg_as_pterm : 'a A.term_arg -> 'a A.term_gen option
val core_types : (string * A.ptyp) list
module Env : sig ... end
type env = Env.t
val coreloc : Location.t
val empty : env
val check_and_emit_name_free : env -> A.lident -> bool
val select_operator : Env.t -> ?formula:bool -> ?asset:bool -> L.t -> (PT.operator * A.ptyp list) -> opsig option
val valid_var_or_arg_type : A.ptyp -> bool
val for_container : env -> PT.container -> A.container
val for_assignment_operator : PT.assignment_operator -> A.assignment_operator
val tt_logical_operator : PT.logical_operator -> A.logical_operator
exception InvalidType
val for_type_exn : ?pkey:Ident.ident list -> env -> PT.type_t -> A.ptyp
val for_type : ?pkey:Ident.ident list -> env -> PT.type_t -> A.ptyp option
val for_asset_type : env -> PT.type_t -> A.lident option
val for_asset_keyof_type : env -> PT.type_t -> A.lident option
val for_literal : env -> A.type_ option -> PT.literal Location.loced -> A.bval
type imode_t = [
  1. | `Ghost
  2. | `Concrete
]
type ekind = [
  1. | `Expr of imode_t
  2. | `Formula of bool
]
type emode_t = {
  1. em_kind : ekind;
  2. em_pred : bool;
}
val is_expr_kind : ekind -> bool
val is_form_kind : ekind -> bool
val expr_mode : imode_t -> emode_t
val form_mode : bool -> emode_t
val for_xexpr : emode_t -> ?autoview:bool -> ?capture: [ `No | `Yes of (Location.t * A.ptyp) Ident.Mid.t Stdlib.ref option ] -> env -> ?ety:A.ptyp -> PT.expr -> PT.lident A.term_node A.struct_poly
val cast_expr : ?autoview:bool -> env -> A.ptyp option -> PT.lident A.term_node A.struct_poly -> PT.lident A.term_gen
val join_expr : ?autoview:bool -> env -> A.ptyp option -> PT.lident A.term_node A.struct_poly list -> A.ptyp option * PT.lident A.term_gen list
val for_gen_matchwith : emode_t -> env -> Location.t -> PT.expr -> PT.branch list -> (statedecl * Tools.Mstr.key Location.loced A.term_gen * (int option * int option Tools.Mstr.t) * PT.expr list) option
val for_asset_expr : emode_t -> env -> PT.expr -> PT.lident A.term_node A.struct_poly * assetdecl option
val for_asset_collection_expr : emode_t -> env -> [ `Parsed of PT.expr | `Typed of PT.lident A.term_node A.struct_poly ] -> PT.lident A.term_gen * (assetdecl * A.container) option
val for_api_call : emode_t -> env -> Location.t -> ([< `Parsed of PT.expr | `Typed of PT.lident A.term_node A.struct_poly Typed ] * PT.lident * PT.expr list) -> (A.pterm * smethod_ * A.lident A.term_arg list) option
val for_gen_method_call : emode_t -> env -> Location.t -> ([ `Parsed of PT.expr | `Typed of PT.lident A.term_node A.struct_poly ] * PT.lident * PT.expr list) -> (A.pterm * (assetdecl * A.container) * method_ * A.lident A.term_arg list * A.type_ Tools.Mint.t) option
val for_arg_effect : emode_t -> env -> update:bool -> assetdecl -> PT.expr -> (PT.lident * A.operator * PT.lident A.term_gen) list option
val for_assign_expr : ?autoview:bool -> ?asset:bool -> emode_t -> env -> Location.t -> (A.assignment_operator * A.ptyp * A.ptyp) -> PT.expr -> PT.lident A.term_gen
val for_formula : ?invariant:bool -> env -> PT.expr -> A.pterm
val for_entry_description : env -> PT.security_arg -> A.entry_description
val for_security_entry : env -> PT.security_arg -> A.security_entry
val for_security_role : env -> PT.security_arg -> A.security_role list
val for_role : env -> PT.lident -> A.security_role option
val for_expr : imode_t -> ?autoview:bool -> env -> ?ety:A.type_ -> PT.expr -> A.pterm
val for_lbl_expr : ?ety:A.type_ -> imode_t -> env -> PT.label_expr -> env * (A.lident option * A.pterm)
val for_lbls_expr : imode_t -> ?ety:A.type_ -> env -> PT.label_exprs -> env * (A.lident option * A.pterm) list
val for_lbl_bexpr : imode_t -> env -> PT.label_expr -> env * (A.lident option * A.pterm)
val for_lbls_bexpr : imode_t -> env -> PT.label_exprs -> env * (A.lident option * A.pterm) list
val for_lbl_formula : env -> PT.label_expr -> env * (A.lident option * A.pterm)
val for_xlbls_formula : env -> PT.label_exprs -> env * (A.lident option * A.pterm) list
val for_lbls_formula : env -> PT.label_exprs -> env * (A.lident option * A.pterm) list
val for_arg_decl : ?can_asset:bool -> env -> PT.lident_typ -> env * (PT.lident * A.ptyp) option
val for_args_decl : ?can_asset:bool -> env -> PT.args -> env * (PT.lident * A.ptyp) option list
val for_lvalue : imode_t -> env -> PT.expr -> (A.lvalue * A.ptyp) option
val for_instruction_r : ret:A.type_ option -> imode_t -> env -> PT.expr -> env * A.instruction
val for_instruction : ret:A.type_ option -> imode_t -> env -> PT.expr -> env * A.instruction
val for_effect : imode_t -> env -> PT.expr -> Env.t * (env * A.instruction)
type spmode = [
  1. | `Global
  2. | `Local
]
val for_specification_item : spmode -> (env * env) -> PT.specification_item -> (env * env) * env ispecification list
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 * A.security_item) option
val for_security : env -> PT.security -> env * A.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 -> A.sexpr
val for_function : env -> PT.s_function Location.loced -> Env.t * env fundecl option
val for_callby : env -> PT.expr -> A.pterm option Location.loced list
val for_entry_properties : (env * env) -> PT.entry_properties -> env * (A.pterm option Location.loced list option * (A.lident option * A.pterm) list option * (A.lident option * A.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 * PT.label_expr list) list) option
val for_enum_decl : env -> (PT.lident * PT.enum_decl) Location.loced -> env * (statedecl option * PT.label_expr list list option)
val for_enums_decl : env -> (PT.lident * PT.enum_decl) Location.loced list -> env * (statedecl option * PT.label_expr list list option) list
val for_var_decl : env -> PT.variable_decl Location.loced -> env * (vardecl option * PT.label_exprs option)
val for_vars_decl : env -> PT.variable_decl Location.loced list -> env * (vardecl option * PT.label_exprs 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
type pre_assetdecl = {
  1. pas_name : A.lident;
  2. pas_fields : (string * A.ptyp * PT.expr option * bool) Location.loced list;
  3. pas_pkty : A.ptyp;
  4. pas_pk : A.lident list;
  5. pas_sortk : A.lident list;
  6. pas_bm : bool;
  7. pas_invs : PT.label_exprs list;
  8. pas_state : statedecl option;
  9. pas_init : PT.expr list;
}
val for_asset_decl : Ident.ident list -> env -> (assetdecl * PT.asset_decl Location.loced) -> Env.t * pre_assetdecl option
val for_assets_decl : env -> PT.asset_decl Location.loced list -> env * assetdecl option list
val for_record_decl : env -> PT.record_decl Location.loced -> env * recorddecl option
val for_records_decl : env -> PT.record_decl Location.loced list -> env * recorddecl option list
val for_acttx_decl : env -> acttx Location.loced -> Env.t * env tentrydecl option
val for_acttxs_decl : env -> acttx Location.loced list -> env * env tentrydecl 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 * A.security list
val group_declarations : PT.declaration list -> groups
type decls = {
  1. state : statedecl option;
  2. variables : vardecl option list;
  3. enums : statedecl option list;
  4. records : recorddecl option list;
  5. assets : assetdecl option list;
  6. functions : env fundecl option list;
  7. acttxs : env tentrydecl option list;
  8. specs : env ispecification list list;
  9. secspecs : A.security list;
}
val for_grouped_declarations : env -> (L.t * groups) -> env * decls
val enums_of_statedecl : statedecl list -> A.enum list
val assets_of_adecls : assetdecl option list -> A.lident A.asset_struct list
val records_of_rdecls : recorddecl list -> A.lident A.record_struct list
val variables_of_vdecls : vardecl option list -> A.lident A.variable list
val specifications_of_ispecifications : env ispecification list -> A.lident A.specification
val functions_of_fdecls : env fundecl option list -> A.lident A.function_struct list
val transentrys_of_tdecls : env tentrydecl option list -> A.lident A.transaction_struct list
val for_declarations : env -> PT.declaration list Location.loced -> A.ast
val typing : env -> PT.archetype -> A.ast
OCaml

Innovation. Community. Security.