A position range inside a string. This type is mostly in combination with syntax trees,
as there might not be a single underlying string in this case that could be used for a Substring
.
- start : String.Pos
- stop : String.Pos
Instances For
Equations
- String.instInhabitedRange = { default := { start := default, stop := default } }
Equations
- String.instReprRange = { reprPrec := String.reprRange✝ }
Equations
- String.instBEqRange = { beq := String.beqRange✝ }
Equations
- String.instHashableRange = { hash := String.hashRange✝ }
Equations
Instances For
Equations
Instances For
Equations
- Lean.SourceInfo.updateTrailing trailing x = match x with | Lean.SourceInfo.original leading pos trailing_1 endPos => Lean.SourceInfo.original leading pos trailing endPos | info => info
Instances For
Syntax AST #
- mk: ∀ (info : Lean.SourceInfo) (kind : Lean.SyntaxNodeKind) (args : Array Lean.Syntax), Lean.IsNode (Lean.Syntax.node info kind args)
Instances For
Equations
- Lean.SyntaxNode = { s : Lean.Syntax // Lean.IsNode s }
Instances For
Equations
- Lean.unreachIsNodeMissing a = nomatch a
Instances For
Equations
- Lean.unreachIsNodeAtom a = nomatch a
Instances For
Equations
- Lean.unreachIsNodeIdent a = nomatch a
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.SyntaxNode.getNumArgs n = Lean.SyntaxNode.withArgs n fun (args : Array Lean.Syntax) => Array.size args
Instances For
Equations
- Lean.SyntaxNode.getArg n i = Lean.SyntaxNode.withArgs n fun (args : Array Lean.Syntax) => Array.get! args i
Instances For
Equations
- Lean.SyntaxNode.getArgs n = Lean.SyntaxNode.withArgs n fun (args : Array Lean.Syntax) => args
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Syntax.getAtomVal x = match x with | Lean.Syntax.atom info val => val | x => ""
Instances For
Equations
- Lean.Syntax.setAtomVal x✝ x = match x✝, x with | Lean.Syntax.atom info val, v => Lean.Syntax.atom info v | stx, x => stx
Instances For
Equations
- Lean.Syntax.ifNode stx hyes hno = match stx with | Lean.Syntax.node i k args => hyes { val := Lean.Syntax.node i k args, property := ⋯ } | x => hno ()
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Syntax.getIdAt stx i = Lean.Syntax.getId (Lean.Syntax.getArg stx i)
Instances For
Equations
- Lean.Syntax.modifyArgs stx fn = match stx with | Lean.Syntax.node i k args => Lean.Syntax.node i k (fn args) | stx => stx
Instances For
Equations
- Lean.Syntax.modifyArg stx i fn = match stx with | Lean.Syntax.node info k args => Lean.Syntax.node info k (Array.modify args i fn) | stx => stx
Instances For
Equations
- Lean.Syntax.rewriteBottomUp fn stx = Id.run (Lean.Syntax.rewriteBottomUpM fn stx)
Instances For
Set SourceInfo.leading
according to the trailing stop of the preceding token.
The result is a round-tripping syntax tree IF, in the input syntax tree,
- all leading stops, atom contents, and trailing starts are correct
- trailing stops are between the trailing start and the next leading stop.
Remark: after parsing, all SourceInfo.leading
fields are empty.
The Syntax
argument is the output produced by the parser for source
.
This function "fixes" the source.leading
field.
Additionally, we try to choose "nicer" splits between leading and trailing stops according to some heuristics so that e.g. comments are associated to the (intuitively) correct token.
Note that the SourceInfo.trailing
fields must be correct.
The implementation of this Function relies on this property.
Equations
Instances For
Split an ident
into its dot-separated components while preserving source info.
Macro scopes are first erased. For example, `foo.bla.boo._@._hyg.4
↦ [`foo, `bla, `boo]
.
If nFields
is set, we take that many fields from the end and keep the remaining components
as one name. For example, `foo.bla.boo
with (nFields := 1)
↦ [`foo.bla, `boo]
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
for _ in stx.topDown
iterates through each node and leaf in stx
top-down, left-to-right.
If firstChoiceOnly
is true
, only visit the first argument of each choice node.
Equations
- Lean.Syntax.topDown stx firstChoiceOnly = { firstChoiceOnly := firstChoiceOnly, stx := stx }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Returns a synthetic Syntax which has the specified String.Range
.
Equations
- Lean.Syntax.ofRange range canonical = Lean.Syntax.atom (Lean.SourceInfo.synthetic range.start range.stop canonical) ""
Instances For
Represents a cursor into a syntax tree that can be read, written, and advanced down/up/left/right.
Indices are allowed to be out-of-bound, in which case cur
is Syntax.missing
.
If the Traverser
is used linearly, updates are linear in the Syntax
object as well.
- cur : Lean.Syntax
- parents : Array Lean.Syntax
Instances For
Equations
- Lean.Syntax.Traverser.fromSyntax stx = { cur := stx, parents := #[], idxs := #[] }
Instances For
Equations
- Lean.Syntax.Traverser.setCur t stx = { cur := stx, parents := t.parents, idxs := t.idxs }
Instances For
Advance to the idx
-th child of the current node.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Advance to the parent of the current node, if any.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Advance to the left sibling of the current node, if any.
Equations
- Lean.Syntax.Traverser.left t = if Array.size t.parents > 0 then Lean.Syntax.Traverser.down (Lean.Syntax.Traverser.up t) (Array.back t.idxs - 1) else t
Instances For
Advance to the right sibling of the current node, if any.
Equations
- Lean.Syntax.Traverser.right t = if Array.size t.parents > 0 then Lean.Syntax.Traverser.down (Lean.Syntax.Traverser.up t) (Array.back t.idxs + 1) else t
Instances For
Monad class that gives read/write access to a Traverser
.
- st : MonadState Lean.Syntax.Traverser m
Instances
Equations
- Lean.Syntax.MonadTraverser.getCur = Lean.Syntax.Traverser.cur <$> get
Instances For
Equations
- Lean.Syntax.MonadTraverser.setCur stx = modify fun (t : Lean.Syntax.Traverser) => Lean.Syntax.Traverser.setCur t stx
Instances For
Equations
- Lean.Syntax.MonadTraverser.goDown idx = modify fun (t : Lean.Syntax.Traverser) => Lean.Syntax.Traverser.down t idx
Instances For
Equations
- Lean.Syntax.MonadTraverser.goUp = modify fun (t : Lean.Syntax.Traverser) => Lean.Syntax.Traverser.up t
Instances For
Equations
- Lean.Syntax.MonadTraverser.goLeft = modify fun (t : Lean.Syntax.Traverser) => Lean.Syntax.Traverser.left t
Instances For
Equations
- Lean.Syntax.MonadTraverser.goRight = modify fun (t : Lean.Syntax.Traverser) => Lean.Syntax.Traverser.right t
Instances For
Equations
- Lean.Syntax.MonadTraverser.getIdx = do let st ← get pure (Option.getD (Array.back? st.idxs) 0)
Instances For
Equations
Instances For
Equations
- Lean.mkListNode args = Lean.mkNullNode args
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Syntax.isAntiquot x = match x with | Lean.Syntax.node info (Lean.Name.str pre "antiquot") args => true | x => false
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Syntax.getCanonicalAntiquot stx = if Lean.Syntax.isOfKind stx Lean.choiceKind = true then stx[0] else stx
Instances For
Equations
- Lean.Syntax.isEscapedAntiquot stx = !Array.isEmpty (Lean.Syntax.getArgs stx[1])
Instances For
Equations
- Lean.Syntax.unescapeAntiquot stx = if Lean.Syntax.isAntiquot stx = true then Lean.Syntax.setArg stx 1 (Lean.mkNullNode (Array.pop (Lean.Syntax.getArgs stx[1]))) else stx
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Return kind of parser expected at this antiquotation, and whether it is a "pseudo" kind (see mkAntiquot
).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Syntax.antiquotSpliceKind? x = match x with | Lean.Syntax.node info (Lean.Name.str k "antiquot_scope") args => some k | x => none
Instances For
Equations
Instances For
Equations
Instances For
Equations
- Lean.Syntax.getAntiquotSpliceSuffix stx = if Lean.Syntax.isAntiquotSplice stx = true then stx[5] else stx[1]
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Syntax.antiquotSuffixSplice? x = match x with | Lean.Syntax.node info (Lean.Name.str k "antiquot_suffix_splice") args => some k | x => none
Instances For
Equations
Instances For
Equations
- Lean.Syntax.getAntiquotSuffixSpliceInner stx = stx[0]
Instances For
Equations
- Lean.Syntax.mkAntiquotSuffixSpliceNode kind inner suffix = (Lean.mkNode (kind ++ `antiquot_suffix_splice) #[inner, Lean.mkAtom suffix]).raw
Instances For
Equations
- Lean.Syntax.isTokenAntiquot stx = Lean.Syntax.isOfKind stx `token_antiquot
Instances For
Equations
Instances For
List of Syntax
nodes in which each succeeding element is the parent of
the current. The associated index is the index of the preceding element in the
list of children of the current element.
Equations
Instances For
Return stack of syntax nodes satisfying visit
, starting with such a node that also fulfills accept
(default "is leaf"), and ending with the root.
Equations
- Lean.Syntax.findStack? root visit accept = if visit root = true then Lean.Syntax.findStack?.go visit accept [] root else none
Instances For
Compare the SyntaxNodeKind
s in pattern
to those of the Syntax
elements in stack
. Return false
if stack
is shorter than pattern
.
Equations
- One or more equations did not get rendered due to their size.