Added a check for unused imports
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user