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

@@ -1,6 +1,6 @@
package ast
import "github.com/laytan/php-parser/pkg/position"
import "git.maride.cc/maride/php-parser/pkg/position"
// The edge-case/overwrites, from node type name to their visitor function name.
var TypeToVisitorNameMap = map[string]string{

View File

@@ -1,8 +1,8 @@
package ast
import (
"github.com/laytan/php-parser/pkg/position"
"github.com/laytan/php-parser/pkg/token"
"git.maride.cc/maride/php-parser/pkg/position"
"git.maride.cc/maride/php-parser/pkg/token"
)
//go:generate go run node_funcs_gen.go

View File

@@ -2,7 +2,7 @@
package ast
import "github.com/laytan/php-parser/pkg/position"
import "git.maride.cc/maride/php-parser/pkg/position"
type Type int

View File

@@ -9,7 +9,7 @@ import (
"regexp"
"text/template"
"github.com/laytan/php-parser/pkg/ast"
"git.maride.cc/maride/php-parser/pkg/ast"
)
type templData struct {
@@ -27,7 +27,7 @@ var fileTempl = template.Must(
package ast
import "github.com/laytan/php-parser/pkg/position"
import "git.maride.cc/maride/php-parser/pkg/position"
type Type int