go mod tidy

This commit is contained in:
2023-12-09 22:36:19 +01:00
parent 65868e812d
commit 966682546c
63 changed files with 244 additions and 255 deletions

View File

@@ -3,8 +3,8 @@ package formatter
import (
"bytes"
"github.com/laytan/php-parser/pkg/ast"
"github.com/laytan/php-parser/pkg/token"
"git.maride.cc/maride/php-parser/pkg/ast"
"git.maride.cc/maride/php-parser/pkg/token"
)
type formatterState int

View File

@@ -2,12 +2,12 @@ package formatter_test
import (
"bytes"
"github.com/laytan/php-parser/pkg/token"
"github.com/laytan/php-parser/pkg/visitor/formatter"
"github.com/laytan/php-parser/pkg/visitor/printer"
"git.maride.cc/maride/php-parser/pkg/token"
"git.maride.cc/maride/php-parser/pkg/visitor/formatter"
"git.maride.cc/maride/php-parser/pkg/visitor/printer"
"testing"
"github.com/laytan/php-parser/pkg/ast"
"git.maride.cc/maride/php-parser/pkg/ast"
)
func TestFormatter_Root(t *testing.T) {