Skip to content

Commit

Permalink
chore: don't use String->Name coercion, which may be removed (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
kim-em authored Mar 22, 2024
1 parent fd76083 commit 8023e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Qq/Macro.lean
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ partial def unquoteLevelList (e : Expr) : UnquoteM (List Level) := do
def mkAbstractedName (e : Expr) : UnquoteM Name := do
have base : Name :=
match e.getAppFn.constName? with
| some (.str _ s) => s!"${s}"
| some (.str _ s) => .mkSimple s!"${s}"
| _ => `unknown
let mut i := 0
repeat
Expand Down

0 comments on commit 8023e33

Please sign in to comment.