2019-12-10 13:47:31 +00:00
|
|
|
open Trace
|
|
|
|
|
2020-01-27 16:05:47 +01:00
|
|
|
module AST = Parser_cameligo.AST
|
|
|
|
module LexToken = Parser_reasonligo.LexToken
|
2020-04-03 19:08:14 +02:00
|
|
|
module Lexer = Lexer.Make (LexToken)
|
2020-01-27 16:05:47 +01:00
|
|
|
module Scoping = Parser_cameligo.Scoping
|
|
|
|
module Region = Simple_utils.Region
|
|
|
|
module ParErr = Parser_reasonligo.ParErr
|
2020-01-23 18:28:04 +01:00
|
|
|
module SyntaxError = Parser_reasonligo.SyntaxError
|
2020-04-03 19:08:14 +02:00
|
|
|
module SSet = Set.Make (String)
|
2020-01-23 18:28:04 +01:00
|
|
|
|
|
|
|
(* Mock IOs TODO: Fill them with CLI options *)
|
|
|
|
|
2020-04-03 19:08:14 +02:00
|
|
|
type language = [`PascaLIGO | `CameLIGO | `ReasonLIGO]
|
2020-01-23 18:28:04 +01:00
|
|
|
|
2020-04-03 19:08:14 +02:00
|
|
|
module SubIO =
|
2020-01-23 18:28:04 +01:00
|
|
|
struct
|
2020-04-03 19:08:14 +02:00
|
|
|
type options = <
|
|
|
|
libs : string list;
|
|
|
|
verbose : SSet.t;
|
|
|
|
offsets : bool;
|
|
|
|
lang : language;
|
|
|
|
ext : string; (* ".religo" *)
|
|
|
|
mode : [`Byte | `Point];
|
|
|
|
cmd : EvalOpt.command;
|
|
|
|
mono : bool
|
|
|
|
>
|
|
|
|
|
|
|
|
let options : options =
|
|
|
|
object
|
|
|
|
method libs = []
|
|
|
|
method verbose = SSet.empty
|
|
|
|
method offsets = true
|
|
|
|
method lang = `ReasonLIGO
|
|
|
|
method ext = ".religo"
|
|
|
|
method mode = `Point
|
|
|
|
method cmd = EvalOpt.Quiet
|
|
|
|
method mono = false
|
|
|
|
end
|
|
|
|
|
|
|
|
let make =
|
|
|
|
EvalOpt.make ~libs:options#libs
|
|
|
|
~verbose:options#verbose
|
|
|
|
~offsets:options#offsets
|
|
|
|
~lang:options#lang
|
|
|
|
~ext:options#ext
|
|
|
|
~mode:options#mode
|
|
|
|
~cmd:options#cmd
|
|
|
|
~mono:options#mono
|
2020-01-23 18:28:04 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
module Parser =
|
|
|
|
struct
|
|
|
|
type ast = AST.t
|
|
|
|
type expr = AST.expr
|
|
|
|
include Parser_reasonligo.Parser
|
|
|
|
end
|
|
|
|
|
|
|
|
module ParserLog =
|
|
|
|
struct
|
|
|
|
type ast = AST.t
|
|
|
|
type expr = AST.expr
|
|
|
|
include Parser_cameligo.ParserLog
|
|
|
|
end
|
|
|
|
|
2020-04-03 19:08:14 +02:00
|
|
|
module Unit =
|
|
|
|
ParserUnit.Make (Lexer)(AST)(Parser)(ParErr)(ParserLog)(SubIO)
|
2019-12-19 13:50:57 +00:00
|
|
|
|
2020-01-14 01:27:35 +01:00
|
|
|
module Errors =
|
|
|
|
struct
|
2020-01-27 16:05:47 +01:00
|
|
|
let generic message =
|
2020-01-23 18:28:04 +01:00
|
|
|
let title () = ""
|
2020-01-27 16:05:47 +01:00
|
|
|
and message () = message.Region.value
|
|
|
|
in Trace.error ~data:[] title message
|
2019-12-19 13:50:57 +00:00
|
|
|
|
2020-01-23 18:28:04 +01:00
|
|
|
let wrong_function_arguments (expr: AST.expr) =
|
2020-01-27 17:28:31 +01:00
|
|
|
let title () = "" in
|
2020-04-03 19:08:14 +02:00
|
|
|
let message () =
|
|
|
|
"It looks like you are defining a function, \
|
|
|
|
however we do not\n\
|
|
|
|
understand the parameters declaration.\n\
|
|
|
|
Examples of valid functions:\n\
|
|
|
|
let x = (a: string, b: int) : int => 3;\n\
|
|
|
|
let tuple = ((a, b): (int, int)) => a + b; \n\
|
|
|
|
let x = (a: string) : string => \"Hello, \" ++ a;\n" in
|
2020-01-23 18:28:04 +01:00
|
|
|
let expression_loc = AST.expr_to_region expr in
|
|
|
|
let data = [
|
|
|
|
("location",
|
|
|
|
fun () -> Format.asprintf "%a" Location.pp_lift @@ expression_loc)]
|
|
|
|
in error ~data title message
|
|
|
|
end
|
|
|
|
|
2020-04-03 19:08:14 +02:00
|
|
|
let apply parser =
|
2020-01-27 16:05:47 +01:00
|
|
|
let local_fail error =
|
|
|
|
Trace.fail
|
|
|
|
@@ Errors.generic
|
2020-04-03 19:08:14 +02:00
|
|
|
@@ Unit.format_error ~offsets:SubIO.options#offsets
|
|
|
|
SubIO.options#mode error in
|
2020-01-23 18:28:04 +01:00
|
|
|
match parser () with
|
2020-01-27 16:05:47 +01:00
|
|
|
Stdlib.Ok semantic_value -> Trace.ok semantic_value
|
2020-01-23 18:28:04 +01:00
|
|
|
|
2020-01-27 16:05:47 +01:00
|
|
|
(* Lexing and parsing errors *)
|
|
|
|
|
|
|
|
| Stdlib.Error error -> Trace.fail @@ Errors.generic error
|
|
|
|
(* Scoping errors *)
|
2020-01-23 18:28:04 +01:00
|
|
|
|
|
|
|
| exception Scoping.Error (Scoping.Reserved_name name) ->
|
|
|
|
let token =
|
|
|
|
Lexer.Token.mk_ident name.Region.value name.Region.region in
|
|
|
|
(match token with
|
2020-01-27 16:05:47 +01:00
|
|
|
Stdlib.Error LexToken.Reserved_name ->
|
|
|
|
Trace.fail @@ Errors.generic @@ Region.wrap_ghost "Reserved name."
|
2020-01-23 18:28:04 +01:00
|
|
|
| Ok invalid ->
|
2020-01-27 16:05:47 +01:00
|
|
|
local_fail
|
|
|
|
("Reserved name.\nHint: Change the name.\n", None, invalid))
|
2020-01-23 18:28:04 +01:00
|
|
|
|
|
|
|
| exception Scoping.Error (Scoping.Duplicate_variant name) ->
|
|
|
|
let token =
|
2020-01-27 16:05:47 +01:00
|
|
|
Lexer.Token.mk_constr name.Region.value name.Region.region
|
|
|
|
in local_fail
|
|
|
|
("Duplicate constructor in this sum type declaration.\n\
|
|
|
|
Hint: Change the constructor.\n", None, token)
|
2020-01-23 18:28:04 +01:00
|
|
|
|
|
|
|
| exception Scoping.Error (Scoping.Non_linear_pattern var) ->
|
|
|
|
let token =
|
|
|
|
Lexer.Token.mk_ident var.Region.value var.Region.region in
|
|
|
|
(match token with
|
2020-01-27 16:05:47 +01:00
|
|
|
Stdlib.Error LexToken.Reserved_name ->
|
|
|
|
Trace.fail @@ Errors.generic @@ Region.wrap_ghost "Reserved name."
|
2020-01-23 18:28:04 +01:00
|
|
|
| Ok invalid ->
|
2020-01-27 16:05:47 +01:00
|
|
|
local_fail ("Repeated variable in this pattern.\n\
|
|
|
|
Hint: Change the name.\n",
|
|
|
|
None, invalid))
|
2020-01-23 18:28:04 +01:00
|
|
|
|
|
|
|
| exception Scoping.Error (Scoping.Duplicate_field name) ->
|
|
|
|
let token =
|
|
|
|
Lexer.Token.mk_ident name.Region.value name.Region.region in
|
|
|
|
(match token with
|
2020-01-27 16:05:47 +01:00
|
|
|
Stdlib.Error LexToken.Reserved_name ->
|
|
|
|
Trace.fail @@ Errors.generic @@ Region.wrap_ghost "Reserved name."
|
2020-01-23 18:28:04 +01:00
|
|
|
| Ok invalid ->
|
2020-01-27 16:05:47 +01:00
|
|
|
local_fail
|
|
|
|
("Duplicate field name in this record declaration.\n\
|
|
|
|
Hint: Change the name.\n",
|
|
|
|
None, invalid))
|
|
|
|
|
|
|
|
| exception SyntaxError.Error (SyntaxError.WrongFunctionArguments expr) ->
|
|
|
|
Trace.fail @@ Errors.wrong_function_arguments expr
|
2020-01-23 18:28:04 +01:00
|
|
|
|
2020-04-03 19:08:14 +02:00
|
|
|
(* Parsing a contract in a file *)
|
|
|
|
|
|
|
|
let parse_file source = apply (fun () -> Unit.parse_file source)
|
|
|
|
|
|
|
|
(* Parsing a contract in a string *)
|
|
|
|
|
|
|
|
let parse_string source = apply (fun () -> Unit.parse_string source)
|
|
|
|
|
|
|
|
(* Parsing an expression in a string *)
|
|
|
|
|
|
|
|
let parse_expression source = apply (fun () -> Unit.parse_expression source)
|