You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiles if lines 169-170 and 200 are changed from this
--Line 169---@param ...commandsstring|nil bob commands, e.g. "resolve" or "build"functioneditor.bob(options, ...commands) end--Line 200functioneditor.execute(command, ..., options) end
to this:
--Line 169---@param ... string|nil bob commands, e.g. "resolve" or "build"functioneditor.bob(options, ...) end--Line 200functioneditor.execute(command, options, ...) end
It compiles with the warnings of undefined.
The text was updated successfully, but these errors were encountered:
The new editor api currently stops compilation.
Compiles if lines 169-170 and 200 are changed from this
to this:
It compiles with the warnings of undefined.
The text was updated successfully, but these errors were encountered: