Updated documentation
This commit is contained in:
12
src/build/Run.go
Normal file
12
src/build/Run.go
Normal file
@ -0,0 +1,12 @@
|
||||
package build
|
||||
|
||||
import (
|
||||
"git.akyoto.dev/cli/q/src/compiler"
|
||||
"git.akyoto.dev/cli/q/src/scanner"
|
||||
)
|
||||
|
||||
// Run compiles the input files.
|
||||
func (build *Build) Run() (compiler.Result, error) {
|
||||
constants, files, functions, structs, errors := scanner.Scan(build.Files)
|
||||
return compiler.Compile(constants, files, functions, structs, errors)
|
||||
}
|
Reference in New Issue
Block a user