mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
Make coroutine.status use a string literal (#500)
Implements #495 C++ isn't a language im very familliar with so this might be completely wrong
This commit is contained in:
parent
fb9c4311d8
commit
69acf5ac07
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ declare coroutine: {
|
|||
create: <A..., R...>((A...) -> R...) -> thread,
|
||||
resume: <A..., R...>(thread, A...) -> (boolean, R...),
|
||||
running: () -> thread,
|
||||
status: (thread) -> string,
|
||||
status: (thread) -> "dead" | "running" | "normal" | "suspended",
|
||||
-- FIXME: This technically returns a function, but we can't represent this yet.
|
||||
wrap: <A..., R...>((A...) -> R...) -> any,
|
||||
yield: <A..., R...>(A...) -> R...,
|
||||
|
|
Loading…
Add table
Reference in a new issue