chore: Version 0.3 #136

Open
aniva wants to merge 600 commits from dev into main
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 3b4b196a30 - Show all commits

View File

@ -170,7 +170,8 @@ def instantiateAll (e: Expr): MetaM Expr := do
| .some mapp =>
let .some matcherInfo := (← getEnv).find? mapp.matcherName | panic! "Matcher must exist"
let f ← Meta.instantiateValueLevelParams matcherInfo mapp.matcherLevels.toList
return .visit (f.betaRev e'.getAppRevArgs (useZeta := true))
let mdata := KVMap.empty.insert `matcher (DataValue.ofName mapp.matcherName)
return .visit $ .mdata mdata (f.betaRev e'.getAppRevArgs (useZeta := true))
return e
structure DelayedMVarInvocation where