package lambdapi
Proof assistant for the λΠ-calculus modulo rewriting
Install
dune-project
Dependency
Authors
Maintainers
Sources
lambdapi-2.2.0.tbz
sha256=920de48ec6c2c3223b6b93879bb65d07ea24aa27f7f7176b3de16e5e467b9939
sha512=135f132730825adeb084669222e68bc999de97b12378fae6abcd9f91ae13093eab29fa49c854adb28d064d52c9890c0f5c8ff9d47a9916f66fe5e0fba3479759
doc/src/lambdapi.parsing/pratt.ml.html
Source file pratt.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
(** Parsing of infix operators using the Pratter library. The interface for the Pratter library can be seen at @see <https://forge.tedomum.net/koizel/pratter>. *) open Common open Core open Syntax module Pratt : sig val parse : Sig_state.t -> Env.t -> p_term -> p_term (** [parse ss env t] Pratt parses term [t], unsugaring infix operators and prefix operators using signature state [ss] and environment [env] to determine which term is an operator, and to build new terms. Note that it doesn't recurse into abstractions or implications and alike. *) end = struct open Lplib open Pos module Pratt_terms : Pratter.SUPPORT with type term = p_term and type table = Sig_state.t * Env.t = struct type term = p_term type table = Sig_state.t * Env.t (* Get properties of term [t] if its an operator. *) let get (tbl, env) t = match t.elt with | P_Iden({elt=(mp, s); _} as id, false) -> let sym = try (* Look if [id] is in [env]... *) if mp <> [] then raise Not_found; ignore (Env.find s env); None with Not_found -> (* ... or look into the signature *) Some(Sig_state.find_sym ~prt:true ~prv:true tbl id) in let f sym = match Term.SymMap.find_opt sym tbl.notations with | Some(Infix(assoc, prio)) -> Some(Pratter.Bin assoc, prio) | Some(Prefix(prio)) -> Some(Pratter.Una, prio) | _ -> None in Option.bind f sym | _ -> None let make_appl t u = Pos.make (Pos.cat t.pos u.pos) (P_Appl(t, u)) end (* NOTE the term is converted from appl nodes to list in [Pratt.parse], rebuilt into appl nodes by [Pratt.parse], and then decomposed again into a list by [get_args]. We could make [Pratt.parse] return a list of terms instead. *) let parse : Sig_state.t -> Env.t -> p_term -> p_term = fun st env t -> let h, args = Syntax.p_get_args t in let strm = Stream.of_list (h :: args) in let module Parse = Pratter.Make(Pratt_terms) in try Parse.expression (st, env) strm with | Parse.OpConflict (t, u) -> Error.fatal t.pos "Operator conflict between \"%a\" and \"%a\"" Pretty.term t Pretty.term u | Parse.UnexpectedBin t -> Error.fatal t.pos "Unexpected binary operator \"%a\"" Pretty.term t | Parse.TooFewArguments -> Error.fatal t.pos "Malformed application in \"%a\"" Pretty.term t end include Pratt
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>