Fix type annotations the linter found to be wrong

Async ids come from `get_function_name`, which returns a string, but
were documented as numbers.

`setmetatable` in clusterio's compat module loses `LibCompat` on the
module return, so the require is cast.

`GuiData.__index` accepts a `DataKey` but emmylua needs that as an
index signature on the class.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
bbassie
2026-08-07 15:31:18 +00:00
co-authored by Claude Opus 5
parent c233a9ab06
commit 0bb92966eb
4 changed files with 7 additions and 6 deletions
+3 -3
View File
@@ -93,7 +93,7 @@ local Async = {
Async.status = {}
--- @class Async.AsyncFunction
--- @field id number The id of this async function
--- @field id string The id of this async function
--- @operator call: Async.AsyncReturn<any>
Async._function_prototype = {}
@@ -104,10 +104,10 @@ Async._function_metatable = {
}
--- @class Async.AsyncReturn<F>
--- @field func_id number The id of the async function to be called
--- @field func_id string The id of the async function to be called
--- @field args any[] The arguments to call the function with
--- @field tick number? If present, the function will be called on this game tick
--- @field next_id number? The id of the async function to be called with the return value
--- @field next_id string? The id of the async function to be called with the return value
--- @field canceled boolean? True if the call has been canceled
--- @field completed boolean? True if the call has completed
--- @field return_values any? The return values of the function call