Implemented package imports
This commit is contained in:
parent
3e5adff5e5
commit
fcc4f8d2d9
21 changed files with 510 additions and 353 deletions
14
src/build/scanner/Scanner.go
Normal file
14
src/build/scanner/Scanner.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
package scanner
|
||||
|
||||
import (
|
||||
"sync"
|
||||
|
||||
"git.akyoto.dev/cli/q/src/build/core"
|
||||
)
|
||||
|
||||
// Scanner is used to scan files before the actual compilation step.
|
||||
type Scanner struct {
|
||||
functions chan *core.Function
|
||||
errors chan error
|
||||
group sync.WaitGroup
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue