From cd3eb27e323fbeeea657de485434b1068d5cf756 Mon Sep 17 00:00:00 2001 From: Luke Boswell Date: Tue, 12 Aug 2025 09:04:13 +1000 Subject: [PATCH] fix 1 segfault --- src/base/CommonEnv.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/CommonEnv.zig b/src/base/CommonEnv.zig index daad0da9bb..aeb4fe3b63 100644 --- a/src/base/CommonEnv.zig +++ b/src/base/CommonEnv.zig @@ -151,7 +151,7 @@ pub fn findIdent(self: *const Self, text: []const u8) ?Ident.Idx { /// Retrieves the text of an identifier by its index. pub fn getIdent(self: *const Self, idx: Ident.Idx) []const u8 { - return self.getIdent(idx); + return self.idents.getText(idx); } /// Returns a const reference to the identifier store.