Implemented package imports
This commit is contained in:
21
src/build/scanner/queue.go
Normal file
21
src/build/scanner/queue.go
Normal file
@ -0,0 +1,21 @@
|
||||
package scanner
|
||||
|
||||
import "os"
|
||||
|
||||
// queue scans the list of files.
|
||||
func (s *Scanner) queue(files ...string) {
|
||||
for _, file := range files {
|
||||
stat, err := os.Stat(file)
|
||||
|
||||
if err != nil {
|
||||
s.errors <- err
|
||||
return
|
||||
}
|
||||
|
||||
if stat.IsDir() {
|
||||
s.queueDirectory(file, "")
|
||||
} else {
|
||||
s.queueFile(file, "")
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user