godoc for extra packages

This commit is contained in:
Aidan 2020-07-18 14:45:36 -07:00
parent fec3550702
commit b941df68e1
No known key found for this signature in database
GPG key ID: 327711E983899316
4 changed files with 17 additions and 2 deletions

View file

@ -24,6 +24,10 @@ import (
"gitlab.com/whom/shs/stdlib"
)
/* creates new VarTable and FuncTable
* reads a configuration file
* executes contents and returns tables
*/
func InitFromConfig(configFile string) (ast.VarTable, ast.FuncTable) {
funcs := stdlib.GenFuncTable()
vars := &map[string]*ast.Token{}

View file

@ -29,16 +29,23 @@ const (
var logLevel int64
/* Set the log level from 0 to 4
* currently only 0, 1, and 2 are used.
*/
func SetLogLvl(lvl int64) {
if lvl < 4 && lvl > 0 {
logLevel = lvl
}
}
/* get current log level as int
*/
func GetLogLvl() int64 {
return logLevel
}
/* writes a message to the log
*/
func Log(lvl int, msg, context string) {
if int64(lvl) > logLevel {
return

View file

@ -24,6 +24,8 @@ import (
"gitlab.com/whom/shs/ast"
)
/* Opens a file and lexes+evaluates the contents
*/
func LoadScript(path string, vt ast.VarTable, ft ast.FuncTable) {
scriptFile, err := os.Open(path)
if err != nil {

View file

@ -24,8 +24,10 @@ import (
"gitlab.com/whom/shs/ast"
)
// wrap this in a lambda that passes in the vt and ft
// I suppose it could be more optimal. Fix if it bothers you
/* gathers completions for the last word in a given line
* shell wraps this in a lambda that passes in the vt and ft
* I suppose it could be more optimal. Fix if it bothers you
*/
func ShellCompleter(line string, vt ast.VarTable, ft ast.FuncTable) []string {
var head, tail string