Skip to content

Commit

Permalink
rename package path to prepare for PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Amadio committed Sep 2, 2021
1 parent 425a998 commit 491d211
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions compile.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package planout
import (
"encoding/json"

"github.com/stitchfix/planout-golang/compiler"
"github.com/stitchfix/planout-golang/compiler/lexer"
"github.com/stitchfix/planout-golang/compiler/parser"
"github.com/biased-unit/planout-golang/compiler"
"github.com/biased-unit/planout-golang/compiler/lexer"
"github.com/biased-unit/planout-golang/compiler/parser"
)

func Compile(script string) (map[string]interface{}, error) {
Expand Down
2 changes: 1 addition & 1 deletion compiler/ast/ast.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package ast

import (
"github.com/stitchfix/planout-golang/compiler/token"
"github.com/biased-unit/planout-golang/compiler/token"
)

// Statement denotes a top-level node such as an if statement, assignment statement, or return statement
Expand Down
2 changes: 1 addition & 1 deletion compiler/compiler.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package compiler
import (
"bytes"
"encoding/json"
"github.com/stitchfix/planout-golang/compiler/parser"
"github.com/biased-unit/planout-golang/compiler/parser"
)

type Compiler struct {
Expand Down
4 changes: 2 additions & 2 deletions compiler/compiler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"io/ioutil"
"testing"

"github.com/stitchfix/planout-golang/compiler/lexer"
"github.com/stitchfix/planout-golang/compiler/parser"
"github.com/biased-unit/planout-golang/compiler/lexer"
"github.com/biased-unit/planout-golang/compiler/parser"
"github.com/stretchr/testify/require"
)

Expand Down
2 changes: 1 addition & 1 deletion compiler/lexer/lexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"unicode"
"unicode/utf8"

"github.com/stitchfix/planout-golang/compiler/token"
"github.com/biased-unit/planout-golang/compiler/token"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion compiler/lexer/lexer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package lexer
import (
"testing"

"github.com/stitchfix/planout-golang/compiler/token"
"github.com/biased-unit/planout-golang/compiler/token"
)

func TestLexer_NextItem(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions compiler/parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"fmt"
"strconv"

"github.com/stitchfix/planout-golang/compiler/ast"
"github.com/stitchfix/planout-golang/compiler/token"
"github.com/biased-unit/planout-golang/compiler/ast"
"github.com/biased-unit/planout-golang/compiler/token"
)

// precedence levels
Expand Down
4 changes: 2 additions & 2 deletions compiler/parser/parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package parser
import (
"testing"

"github.com/stitchfix/planout-golang/compiler/ast"
"github.com/stitchfix/planout-golang/compiler/lexer"
"github.com/biased-unit/planout-golang/compiler/ast"
"github.com/biased-unit/planout-golang/compiler/lexer"
)

func TestAssignmentStatement(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/stitchfix/planout-golang
module github.com/biased-unit/planout-golang

go 1.14

Expand Down

0 comments on commit 491d211

Please sign in to comment.