llgo gen: todo

This commit is contained in:
xushiwei
2024-04-23 00:47:38 +08:00
parent 2d8f5dbc51
commit 67af68ae10
5 changed files with 141 additions and 1 deletions

View File

@@ -16,9 +16,18 @@
package llgo
import (
"github.com/goplus/llgo/ssa"
)
// -----------------------------------------------------------------------------
type Config struct {
}
// LoadDir loads Go packages from a specified directory.
func LoadDir(dir string, conf *Config, genTestPkg, promptGen bool) (out, test *ssa.Package, err error) {
panic("todo")
}
// -----------------------------------------------------------------------------