migrate to my main gitlab
This commit is contained in:
parent
d17e975cc8
commit
c7008bb19e
12 changed files with 20 additions and 20 deletions
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
package ast
|
package ast
|
||||||
|
|
||||||
import "git.callpipe.com/aidan/shs/log"
|
import "gitlab.com/whom/shs/log"
|
||||||
|
|
||||||
func (t *Token) Eval(funcs FuncTable, vars VarTable) (*Token, bool) {
|
func (t *Token) Eval(funcs FuncTable, vars VarTable) (*Token, bool) {
|
||||||
if t == nil {
|
if t == nil {
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
package ast
|
package ast
|
||||||
|
|
||||||
import "git.callpipe.com/aidan/shs/log"
|
import "gitlab.com/whom/shs/log"
|
||||||
|
|
||||||
type Operation func(*Token, VarTable, FuncTable) *Token
|
type Operation func(*Token, VarTable, FuncTable) *Token
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
package ast
|
package ast
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.callpipe.com/aidan/shs/log"
|
"gitlab.com/whom/shs/log"
|
||||||
"unicode"
|
"unicode"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ import (
|
||||||
"math"
|
"math"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"git.callpipe.com/aidan/shs/log"
|
"gitlab.com/whom/shs/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Trigger this if you are using this for a shell
|
// Trigger this if you are using this for a shell
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,8 @@ package main
|
||||||
import (
|
import (
|
||||||
"strings"
|
"strings"
|
||||||
"os"
|
"os"
|
||||||
"git.callpipe.com/aidan/shs/log"
|
"gitlab.com/whom/shs/log"
|
||||||
"git.callpipe.com/aidan/shs/ast"
|
"gitlab.com/whom/shs/ast"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,9 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
"github.com/chzyer/readline"
|
"github.com/chzyer/readline"
|
||||||
"git.callpipe.com/aidan/shs/ast"
|
"gitlab.com/whom/shs/ast"
|
||||||
"git.callpipe.com/aidan/shs/log"
|
"gitlab.com/whom/shs/log"
|
||||||
"git.callpipe.com/aidan/shs/stdlib"
|
"gitlab.com/whom/shs/stdlib"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,8 @@ package stdlib
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
"git.callpipe.com/aidan/shs/ast"
|
"gitlab.com/whom/shs/ast"
|
||||||
"git.callpipe.com/aidan/shs/log"
|
"gitlab.com/whom/shs/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
// PKG WIDE TODO: BIGNUM SYSTEM
|
// PKG WIDE TODO: BIGNUM SYSTEM
|
||||||
|
|
|
||||||
|
|
@ -24,8 +24,8 @@ import (
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"syscall"
|
"syscall"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"git.callpipe.com/aidan/shs/ast"
|
"gitlab.com/whom/shs/ast"
|
||||||
"git.callpipe.com/aidan/shs/log"
|
"gitlab.com/whom/shs/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
var bgProcs = make([]*exec.Cmd, 0)
|
var bgProcs = make([]*exec.Cmd, 0)
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,8 @@ package stdlib
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
"git.callpipe.com/aidan/shs/ast"
|
"gitlab.com/whom/shs/ast"
|
||||||
"git.callpipe.com/aidan/shs/log"
|
"gitlab.com/whom/shs/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
func cd(in *ast.Token, vt ast.VarTable, ft ast.FuncTable) *ast.Token {
|
func cd(in *ast.Token, vt ast.VarTable, ft ast.FuncTable) *ast.Token {
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,8 @@
|
||||||
package stdlib
|
package stdlib
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.callpipe.com/aidan/shs/ast"
|
"gitlab.com/whom/shs/ast"
|
||||||
"git.callpipe.com/aidan/shs/log"
|
"gitlab.com/whom/shs/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
/* EXPAND
|
/* EXPAND
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ package stdlib
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
"git.callpipe.com/aidan/shs/ast"
|
"gitlab.com/whom/shs/ast"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GenFuncTable() ast.FuncTable {
|
func GenFuncTable() ast.FuncTable {
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,8 @@ package stdlib
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"git.callpipe.com/aidan/shs/ast"
|
"gitlab.com/whom/shs/ast"
|
||||||
"git.callpipe.com/aidan/shs/log"
|
"gitlab.com/whom/shs/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
func concat(in *ast.Token, vt ast.VarTable, ft ast.FuncTable) *ast.Token {
|
func concat(in *ast.Token, vt ast.VarTable, ft ast.FuncTable) *ast.Token {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue