Documentation

Lean.Elab.Quotation

Equations
    Instances For

      Transform sequence of pushes and appends into acceptable code

      Equations
        Instances For
          Equations
            Instances For

              match #

              @[reducible, inline]

              an "alternative" of patterns plus right-hand side

              Equations
                Instances For

                  In a single match step, we match the first discriminant against the "head" of the first pattern of the first alternative. This datatype describes what kind of check this involves, which helps other patterns decide if they are covered by the same check and don't have to be checked again (see also MatchResult).

                  • unconditional : HeadCheck

                    match step that always succeeds: _, x, `($x), ...

                  • shape (k : List SyntaxNodeKind) (arity : Option Nat) : HeadCheck

                    match step based on kind and, optionally, arity of discriminant If arity is given, that number of new discriminants is introduced. covered patterns should then introduce the same number of new patterns. We actually check the arity at run time only in the case of null nodes since it should otherwise by implied by the node kind. without arity: `($x:k) with arity: any quotation without an antiquotation head pattern

                  • slice (numPrefix numSuffix : Nat) : HeadCheck

                    Match step that succeeds on null nodes of arity at least numPrefix + numSuffix, introducing discriminants for the first numPrefix children, one null node for those in between, and for the numSuffix last children. example: ([$x, $xs,*, $y]) is slice 2 2`

                  • other (pat : Syntax) : HeadCheck

                    other, complicated match step that will probably only cover identical patterns example: antiquotation splices `($[...]*)

                  Instances For

                    Describe whether a pattern is covered by a head check (induced by the pattern itself or a different pattern).

                    • covered (f : AltTermElabM Alt) (exhaustive : Bool) : MatchResult

                      Pattern agrees with head check, remove and transform remaining alternative. If exhaustive is false, also include unchanged alternative in the "no" branch.

                    • uncovered : MatchResult

                      Pattern disagrees with head check, include in "no" branch only

                    • undecided : MatchResult

                      Pattern is not quite sure yet; include unchanged in both branches

                    Instances For

                      All necessary information on a pattern head.

                      Instances For
                        @[reducible, inline]
                        Equations
                          Instances For