This commit is contained in:
Brendan Hansknecht 2023-04-07 07:57:30 -07:00
parent 2e2b687fac
commit a354860d07
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
2 changed files with 5 additions and 9 deletions

View file

@ -277,8 +277,8 @@ fn deep_copy_expr_help<C: CopyEnv>(env: &mut C, copied: &mut Vec<Variable>, expr
Float(v1, v2, str, val, bound) => Float(sub!(*v1), sub!(*v2), str.clone(), *val, *bound),
Str(str) => Str(str.clone()),
SingleQuote(v1, v2, char, bound) => SingleQuote(sub!(*v1), sub!(*v2), *char, *bound),
IngestedFile(file_path, bytes, anno) => {
IngestedFile(file_path.clone(), bytes.clone(), anno.clone())
IngestedFile(file_path, bytes, var) => {
IngestedFile(file_path.clone(), bytes.clone(), sub!(*var))
}
List {
elem_var,