We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nil is not cast away when checking with if
---@class Entity ---@field direction integer local ent = {} ---@class Event ---@field start? integer local event = {} ---@param event Event local function f(event) if event.start then ent.direction = event.start end end