Infer coroutine effects automatically

This commit is contained in:
pavel 2026-08-27 21:53:34 +02:00
commit 5b30e49486
15 changed files with 339 additions and 103 deletions

View file

@ -65,7 +65,6 @@ type FunctionSignature struct {
Params []Param
ReturnType string
ReturnRef TypeRef
Suspend bool
}
type FunctionDecl struct {
@ -75,7 +74,6 @@ type FunctionDecl struct {
ReturnType string
ReturnRef TypeRef
Body []Stmt
Suspend bool
}
type Param struct {