| ... | ... | @@ -934,6 +934,8 @@ const AutodocErrors = error{ |
| 934 | 934 | OutOfMemory, |
| 935 | 935 | CurrentWorkingDirectoryUnlinked, |
| 936 | 936 | UnexpectedEndOfFile, |
| 937 | ModuleNotFound, |
| 938 | ImportOutsideModulePath, |
| 937 | 939 | } || std.fs.File.OpenError || std.fs.File.ReadError; |
| 938 | 940 | |
| 939 | 941 | /// `call` instructions will have loopy references to themselves |
| ... | ... | @@ -1058,7 +1060,7 @@ fn walkInstruction( |
| 1058 | 1060 | ); |
| 1059 | 1061 | } |
| 1060 | 1062 | |
| 1061 | | const new_file = self.zcu.importFile(file, path) catch unreachable; |
| 1063 | const new_file = try self.zcu.importFile(file, path); |
| 1062 | 1064 | const result = try self.files.getOrPut(self.arena, new_file.file); |
| 1063 | 1065 | if (result.found_existing) { |
| 1064 | 1066 | return DocData.WalkResult{ |