| ... | @@ -332,15 +332,15 @@ fn generateZirData(self: *Autodoc, output_dir: std.fs.Dir) !void { | ... | @@ -332,15 +332,15 @@ fn generateZirData(self: *Autodoc, output_dir: std.fs.Dir) !void { |
| 332 | ); | 332 | ); |
| 333 | | 333 | |
| 334 | if (self.ref_paths_pending_on_decls.count() > 0) { | 334 | if (self.ref_paths_pending_on_decls.count() > 0) { |
| 335 | @panic("some decl paths were never fully analized (pending on decls)"); | 335 | @panic("some decl paths were never fully analyzed (pending on decls)"); |
| 336 | } | 336 | } |
| 337 | | 337 | |
| 338 | if (self.ref_paths_pending_on_types.count() > 0) { | 338 | if (self.ref_paths_pending_on_types.count() > 0) { |
| 339 | @panic("some decl paths were never fully analized (pending on types)"); | 339 | @panic("some decl paths were never fully analyzed (pending on types)"); |
| 340 | } | 340 | } |
| 341 | | 341 | |
| 342 | if (self.pending_ref_paths.count() > 0) { | 342 | if (self.pending_ref_paths.count() > 0) { |
| 343 | @panic("some decl paths were never fully analized"); | 343 | @panic("some decl paths were never fully analyzed"); |
| 344 | } | 344 | } |
| 345 | | 345 | |
| 346 | var data = DocData{ | 346 | var data = DocData{ |
| ... | @@ -984,7 +984,7 @@ fn walkInstruction( | ... | @@ -984,7 +984,7 @@ fn walkInstruction( |
| 984 | // Immediately add this module to the import table of our | 984 | // Immediately add this module to the import table of our |
| 985 | // current module, regardless of wether it's new or not. | 985 | // current module, regardless of wether it's new or not. |
| 986 | if (self.modules.getPtr(file.pkg)) |current_module| { | 986 | if (self.modules.getPtr(file.pkg)) |current_module| { |
| 987 | // TODO: apparently, in the stdlib a file gets analized before | 987 | // TODO: apparently, in the stdlib a file gets analyzed before |
| 988 | // its module gets added. I guess we're importing a file | 988 | // its module gets added. I guess we're importing a file |
| 989 | // that belongs to another module through its file path? | 989 | // that belongs to another module through its file path? |
| 990 | // (ie not through its module name). | 990 | // (ie not through its module name). |