package octez-protocol-alpha-libs

  1. Overview
  2. Docs
Octez protocol alpha libraries

Install

Dune Dependency

Authors

Maintainers

Sources

tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65

doc/octez-protocol-alpha-libs.client/Tezos_client_alpha/Michelson_v1_parser/index.html

Module Tezos_client_alpha.Michelson_v1_parserSource

Sourcetype 'prim parser_result = {
  1. source : string;
    (*

    The original source code.

    *)
  2. unexpanded : string Tezos_micheline.Micheline.canonical;
    (*

    Original expression with macros.

    *)
  3. expanded : 'prim Tezos_micheline.Micheline.canonical;
    (*

    Expression with macros fully expanded.

    *)
  4. expansion_table : (int * (Tezos_micheline.Micheline_parser.location * int list)) list;
    (*

    Associates unexpanded nodes to their parsing locations and the nodes expanded from it in the expanded expression.

    *)
  5. unexpansion_table : (int * int) list;
    (*

    Associates an expanded node to its source in the unexpanded expression.

    *)
}

The result of parsing and expanding a Michelson V1 script or data.

Sourcetype parsed = Tezos_protocol_alpha.Protocol.Michelson_v1_primitives.prim parser_result
Sourceval compare_parsed : parsed -> parsed -> int
Sourceval parse_toplevel : ?check:bool -> string -> parsed Tezos_micheline.Micheline_parser.parsing_result
Sourceval expand_toplevel : ?check:bool -> string -> string parser_result Tezos_micheline.Micheline_parser.parsing_result

Same as parse_toplevel but skips the final step (recognizing the primitives).

Sourceval parse_expression : ?check:bool -> string -> parsed Tezos_micheline.Micheline_parser.parsing_result
Sourceval expand_expression : ?check:bool -> string -> string parser_result Tezos_micheline.Micheline_parser.parsing_result

Same as parse_expression but skips the final step (recognizing the primitives).

Sourceval expand_all_and_recognize_prims : source:string -> original:Tezos_micheline.Micheline_parser.node -> parsed Tezos_micheline.Micheline_parser.parsing_result
Sourceval unrecognize_prims : parsed -> string parser_result
OCaml

Innovation. Community. Security.