Updated documentation
This commit is contained in:
@ -1,14 +1,5 @@
|
||||
package build
|
||||
|
||||
import (
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"git.akyoto.dev/cli/q/src/compiler"
|
||||
"git.akyoto.dev/cli/q/src/config"
|
||||
"git.akyoto.dev/cli/q/src/scanner"
|
||||
)
|
||||
|
||||
// Build describes a compiler build.
|
||||
type Build struct {
|
||||
Files []string
|
||||
@ -20,36 +11,3 @@ func New(files ...string) *Build {
|
||||
Files: files,
|
||||
}
|
||||
}
|
||||
|
||||
// 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)
|
||||
}
|
||||
|
||||
// Executable returns the path to the executable.
|
||||
func (build *Build) Executable() string {
|
||||
path, _ := filepath.Abs(build.Files[0])
|
||||
|
||||
if strings.HasSuffix(path, ".q") {
|
||||
path = fromFileName(path)
|
||||
} else {
|
||||
path = fromDirectoryName(path)
|
||||
}
|
||||
|
||||
if config.TargetOS == config.Windows {
|
||||
path += ".exe"
|
||||
}
|
||||
|
||||
return path
|
||||
}
|
||||
|
||||
// fromDirectoryName returns the executable path based on the directory name.
|
||||
func fromDirectoryName(path string) string {
|
||||
return filepath.Join(path, filepath.Base(path))
|
||||
}
|
||||
|
||||
// fromFileName returns the executable path based on the file name.
|
||||
func fromFileName(path string) string {
|
||||
return filepath.Join(filepath.Dir(path), strings.TrimSuffix(filepath.Base(path), ".q"))
|
||||
}
|
||||
|
35
src/build/Executable.go
Normal file
35
src/build/Executable.go
Normal file
@ -0,0 +1,35 @@
|
||||
package build
|
||||
|
||||
import (
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"git.akyoto.dev/cli/q/src/config"
|
||||
)
|
||||
|
||||
// Executable returns the path to the executable.
|
||||
func (build *Build) Executable() string {
|
||||
path, _ := filepath.Abs(build.Files[0])
|
||||
|
||||
if strings.HasSuffix(path, ".q") {
|
||||
path = fromFileName(path)
|
||||
} else {
|
||||
path = fromDirectoryName(path)
|
||||
}
|
||||
|
||||
if config.TargetOS == config.Windows {
|
||||
path += ".exe"
|
||||
}
|
||||
|
||||
return path
|
||||
}
|
||||
|
||||
// fromDirectoryName returns the executable path based on the directory name.
|
||||
func fromDirectoryName(path string) string {
|
||||
return filepath.Join(path, filepath.Base(path))
|
||||
}
|
||||
|
||||
// fromFileName returns the executable path based on the file name.
|
||||
func fromFileName(path string) string {
|
||||
return filepath.Join(filepath.Dir(path), strings.TrimSuffix(filepath.Base(path), ".q"))
|
||||
}
|
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