Added a check for unused imports

This commit is contained in:
2024-07-31 11:55:21 +02:00
parent 2293603923
commit 87ae78c86a
14 changed files with 138 additions and 31 deletions

View File

@ -20,10 +20,10 @@ func New(files ...string) *Build {
}
}
// Run parses the input files and generates an executable file.
// Run compiles the input files.
func (build *Build) Run() (compiler.Result, error) {
functions, errors := scanner.Scan(build.Files)
return compiler.Compile(functions, errors)
files, functions, errors := scanner.Scan(build.Files)
return compiler.Compile(files, functions, errors)
}
// Executable returns the path to the executable.