Merge pull request #3090 from rtfeldman/expr-blank

This commit is contained in:
Richard Feldman 2022-05-18 21:25:07 -04:00 committed by GitHub
commit 0f3709da6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 23 additions and 3 deletions

View file

@ -5229,6 +5229,7 @@ pub fn with_hole<'a>(
}
}
}
TypedHole(_) => Stmt::RuntimeError("Hit a blank"),
RuntimeError(e) => Stmt::RuntimeError(env.arena.alloc(format!("{:?}", e))),
}
}