2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2016. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2016-12-03 16:05:02 +04:00
|
|
|
val parse_program:
|
|
|
|
Client_commands.context ->
|
|
|
|
string -> Script.code Lwt.t
|
|
|
|
val parse_data:
|
|
|
|
Client_commands.context ->
|
|
|
|
string -> Script.expr Lwt.t
|
|
|
|
val parse_data_type:
|
|
|
|
Client_commands.context ->
|
|
|
|
string -> Script.expr Lwt.t
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
module Program : Client_aliases.Alias with type t = Script.code
|
|
|
|
|
2016-12-03 16:05:02 +04:00
|
|
|
val commands: unit -> Client_commands.command list
|