From b7ff0165ea59352853cb00c1e7bb26cb26cdbcc1 Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Sat, 2 Nov 2024 14:13:21 +0000 Subject: [PATCH] =?UTF-8?q?style:=20replace=20`=E2=86=90=20pure`=20with=20?= =?UTF-8?q?`:=3D`=20in=20matches?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Qq/ForLean/ReduceEval.lean | 2 +- Qq/Macro.lean | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Qq/ForLean/ReduceEval.lean b/Qq/ForLean/ReduceEval.lean index 97f8577..fe14353 100644 --- a/Qq/ForLean/ReduceEval.lean +++ b/Qq/ForLean/ReduceEval.lean @@ -8,7 +8,7 @@ def throwFailedToEval (e : Expr) : MetaM α := private partial def evalList [ReduceEval α] (e : Expr) : MetaM (List α) := do let e ← whnf e - let .const c _ ← pure e.getAppFn | throwFailedToEval e + let .const c _ := e.getAppFn | throwFailedToEval e let nargs := e.getAppNumArgs match c, nargs with | ``List.nil, 1 => pure [] diff --git a/Qq/Macro.lean b/Qq/Macro.lean index 4c52ba7..4f1a5ea 100644 --- a/Qq/Macro.lean +++ b/Qq/Macro.lean @@ -254,7 +254,7 @@ partial def unquoteExpr (e : Expr) : UnquoteM Expr := do } return fv let e ← whnf e - let .const c _ ← pure e.getAppFn | throwError "unquoteExpr: {e} : {eTy}" + let .const c _ := e.getAppFn | throwError "unquoteExpr: {e} : {eTy}" let nargs := e.getAppNumArgs match c, nargs with | ``betaRev', 2 => return betaRev' (← unquoteExpr (e.getArg! 0)) (← unquoteExprList (e.getArg! 1))