Currently, the type-checker complains about index accesses of a `table.pack` result inside condition branches that check that field `n` is not nil. https://github.com/EmmyLuaLs/emmylua-analyzer-rust/blob/381d67737fd068a9056572716461219d28aa9c23/crates/emmylua_code_analysis/resources/std/table.lua#L122 should be instead: ```lua ---@return [T...] & { n: integer } ```
Currently, the type-checker complains about index accesses of a
table.packresult inside condition branches that check that fieldnis not nil.emmylua-analyzer-rust/crates/emmylua_code_analysis/resources/std/table.lua
Line 122 in 381d677
should be instead:
---@return [T...] & { n: integer }