Skip to content

Look Into Removing Dependency on Coroutine and Task Library #28

Description

@YetAnotherClown

The Coroutine library is currently used to detect yielding, we can replace this with this hack which should be more performant

local function run()
   --- ...
end

for _ in run do
end

We want to implement this in a way where we can still detect when it yields, versus allowing it to just error.


The Task library is used to output errors/warnings with no default traceback, e.g. task.spawn(error, err, 0). We probably don't need to do this, can find a better way to handle and output errors.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions