chore: Version 0.3 #136

Open
aniva wants to merge 487 commits from dev into main
1 changed files with 5 additions and 1 deletions
Showing only changes of commit fe8b259e4f - Show all commits

View File

@ -179,7 +179,11 @@ def sorrysToGoalState (sorrys : List Elab.TermInfo) : MetaM GoalState := do
let type := termInfo.expectedType?.get!
let mvar ← Meta.mkFreshExprSyntheticOpaqueMVar type
return mvar.mvarId!
GoalState.createFromMVars goals (root := { name := .anonymous })
let root := match goals with
| [] => panic! "This function cannot be called on an empty list"
| [g] => g
| _ => { name := .anonymous }
GoalState.createFromMVars goals root