Implemented struct parser

This commit is contained in:
2025-02-04 14:41:04 +01:00
parent fc1b970f7f
commit 51e3c1ba0e
19 changed files with 388 additions and 252 deletions

View File

@ -23,8 +23,8 @@ func New(files ...string) *Build {
// Run compiles the input files.
func (build *Build) Run() (compiler.Result, error) {
files, functions, errors := scanner.Scan(build.Files)
return compiler.Compile(files, functions, errors)
files, functions, types, errors := scanner.Scan(build.Files)
return compiler.Compile(files, functions, types, errors)
}
// Executable returns the path to the executable.