Skip to content

Commit

Permalink
promote to docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-wieser committed Feb 8, 2024
1 parent 190ec9a commit a9b3399
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Qq/Macro.lean
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ structure UnquoteState where
-/
mvars : List (Expr × MVarSynth) := []

/- Maps quoted expressions (of type Level) in the old context to level parameter names in the new context -/
/-- Maps quoted expressions (of type Level) in the old context to level parameter names in the new context -/
levelSubst : HashMap Expr Level := {}

/- Maps quoted expressions (of type Expr) in the old context to expressions in the new context -/
/-- Maps quoted expressions (of type Expr) in the old context to expressions in the new context -/
exprSubst : HashMap Expr Expr := {}

/- New unquoted local context -/
/-- New unquoted local context -/
unquoted := LocalContext.empty

/- Maps free variables in the new context to expressions in the old context (of type Expr) -/
/-- Maps free variables in the new context to expressions in the old context (of type Expr) -/
exprBackSubst : HashMap Expr ExprBackSubstResult := {}

/- Maps free variables in the new context to levels in the old context (of type Level) -/
/-- Maps free variables in the new context to levels in the old context (of type Level) -/
levelBackSubst : HashMap Level Expr := {}

/-- New free variables in the new context that were newly introduced for irreducible expressions. -/
Expand Down

0 comments on commit a9b3399

Please sign in to comment.