build: replace VKCOM import with laytan import

This commit is contained in:
Laytan Laats
2023-03-31 16:50:08 +02:00
parent 92d341cbb5
commit 68ac672368
62 changed files with 201 additions and 200 deletions

View File

@@ -1,6 +1,6 @@
package ast
import "github.com/VKCOM/php-parser/pkg/position"
import "github.com/laytan/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/VKCOM/php-parser/pkg/position"
"github.com/VKCOM/php-parser/pkg/token"
"github.com/laytan/php-parser/pkg/position"
"github.com/laytan/php-parser/pkg/token"
)
//go:generate go run node_funcs_gen.go

View File

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

View File

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