all: renamed github.com/z7zmey/php-parser with github.com/VKCOM/php-parser

This commit is contained in:
Makhnev Petr 2021-07-30 21:01:34 +03:00 committed by GitHub
parent 049ce7ddc6
commit 72cd222aeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
63 changed files with 230 additions and 230 deletions

View File

@ -1,13 +1,13 @@
> This is a fork of the [z7zmey](https://github.com/z7zmey) [parser](https://github.com/z7zmey/php-parser) that adds PHP 8 support. > This is a fork of the [z7zmey](https://github.com/z7zmey) [parser](https://github.com/VKCOM/php-parser) that adds PHP 8 support.
PHP Parser written in Go PHP Parser written in Go
======================== ========================
<img src="./parser.jpg" alt="PHP Parser written in Go" width="980"/> <img src="./parser.jpg" alt="PHP Parser written in Go" width="980"/>
[![GoDoc](https://godoc.org/github.com/z7zmey/php-parser?status.svg)](https://godoc.org/github.com/z7zmey/php-parser) [![GoDoc](https://godoc.org/github.com/VKCOM/php-parser?status.svg)](https://godoc.org/github.com/VKCOM/php-parser)
[![Build Status](https://travis-ci.org/z7zmey/php-parser.svg?branch=master)](https://travis-ci.org/z7zmey/php-parser) [![Build Status](https://travis-ci.org/z7zmey/php-parser.svg?branch=master)](https://travis-ci.org/z7zmey/php-parser)
[![Go Report Card](https://goreportcard.com/badge/github.com/z7zmey/php-parser)](https://goreportcard.com/report/github.com/z7zmey/php-parser) [![Go Report Card](https://goreportcard.com/badge/github.com/VKCOM/php-parser)](https://goreportcard.com/report/github.com/VKCOM/php-parser)
This project uses [goyacc](https://godoc.org/golang.org/x/tools/cmd/goyacc) and [ragel](https://www.colm.net/open-source/ragel/) tools to create PHP parser. It parses source code into [AST](https://en.wikipedia.org/wiki/Abstract_syntax_tree). It can be used to write static analysis, refactoring, metrics, code style formatting tools. This project uses [goyacc](https://godoc.org/golang.org/x/tools/cmd/goyacc) and [ragel](https://www.colm.net/open-source/ragel/) tools to create PHP parser. It parses source code into [AST](https://en.wikipedia.org/wiki/Abstract_syntax_tree). It can be used to write static analysis, refactoring, metrics, code style formatting tools.
@ -38,11 +38,11 @@ import (
"log" "log"
"os" "os"
"github.com/z7zmey/php-parser/pkg/cfg" "github.com/VKCOM/php-parser/pkg/cfg"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/parser" "github.com/VKCOM/php-parser/pkg/parser"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"github.com/z7zmey/php-parser/pkg/visitor/dumper" "github.com/VKCOM/php-parser/pkg/visitor/dumper"
) )
func main() { func main() {
@ -80,7 +80,7 @@ Install
------- -------
``` ```
go get github.com/z7zmey/php-parser/cmd/php-parser go get github.com/VKCOM/php-parser/cmd/php-parser
``` ```
CLI CLI

View File

@ -17,15 +17,15 @@ import (
"github.com/pkg/profile" "github.com/pkg/profile"
"github.com/yookoala/realpath" "github.com/yookoala/realpath"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/parser" "github.com/VKCOM/php-parser/pkg/parser"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"github.com/z7zmey/php-parser/pkg/visitor/dumper" "github.com/VKCOM/php-parser/pkg/visitor/dumper"
"github.com/z7zmey/php-parser/pkg/visitor/nsresolver" "github.com/VKCOM/php-parser/pkg/visitor/nsresolver"
"github.com/z7zmey/php-parser/pkg/visitor/printer" "github.com/VKCOM/php-parser/pkg/visitor/printer"
"github.com/z7zmey/php-parser/pkg/visitor/traverser" "github.com/VKCOM/php-parser/pkg/visitor/traverser"
) )
var wg sync.WaitGroup var wg sync.WaitGroup

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/z7zmey/php-parser module github.com/VKCOM/php-parser
go 1.13 go 1.13

View File

@ -1,9 +1,9 @@
package php5 package php5
import ( import (
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
type ParserBrackets struct { type ParserBrackets struct {

View File

@ -1,12 +1,12 @@
package php5 package php5
import ( import (
"github.com/z7zmey/php-parser/internal/position" "github.com/VKCOM/php-parser/internal/position"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
// Parser structure // Parser structure

View File

@ -5,14 +5,14 @@ import (
"gotest.tools/assert" "gotest.tools/assert"
"github.com/z7zmey/php-parser/internal/php5" "github.com/VKCOM/php-parser/internal/php5"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
func TestIdentifier(t *testing.T) { func TestIdentifier(t *testing.T) {

BIN
internal/php5/php5.go generated

Binary file not shown.

View File

@ -4,9 +4,9 @@ package php5
import ( import (
"strconv" "strconv"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
%} %}

View File

@ -4,10 +4,10 @@ import (
"io/ioutil" "io/ioutil"
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php5" "github.com/VKCOM/php-parser/internal/php5"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
func BenchmarkPhp5(b *testing.B) { func BenchmarkPhp5(b *testing.B) {

View File

@ -1,9 +1,9 @@
package php7 package php7
import ( import (
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
type ParserBrackets struct { type ParserBrackets struct {

View File

@ -1,12 +1,12 @@
package php7 package php7
import ( import (
"github.com/z7zmey/php-parser/internal/position" "github.com/VKCOM/php-parser/internal/position"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
// Parser structure // Parser structure

View File

@ -5,14 +5,14 @@ import (
"gotest.tools/assert" "gotest.tools/assert"
"github.com/z7zmey/php-parser/internal/php7" "github.com/VKCOM/php-parser/internal/php7"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
func TestIdentifier(t *testing.T) { func TestIdentifier(t *testing.T) {

BIN
internal/php7/php7.go generated

Binary file not shown.

View File

@ -4,8 +4,8 @@ package php7
import ( import (
"strconv" "strconv"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
%} %}

View File

@ -4,10 +4,10 @@ import (
"io/ioutil" "io/ioutil"
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php7" "github.com/VKCOM/php-parser/internal/php7"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
func BenchmarkPhp7(b *testing.B) { func BenchmarkPhp7(b *testing.B) {

View File

@ -3,10 +3,10 @@ package php8
import ( import (
"bytes" "bytes"
"github.com/z7zmey/php-parser/internal/position" "github.com/VKCOM/php-parser/internal/position"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
position2 "github.com/z7zmey/php-parser/pkg/position" position2 "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
// Builder is responsible for creating nodes inside grammar rules. // Builder is responsible for creating nodes inside grammar rules.

View File

@ -4,11 +4,11 @@ import (
"bytes" "bytes"
"strings" "strings"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
type Lexer struct { type Lexer struct {

View File

@ -1,9 +1,9 @@
package php8 package php8
import ( import (
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
type ParserBrackets struct { type ParserBrackets struct {

View File

@ -1,11 +1,11 @@
package php8 package php8
import ( import (
"github.com/z7zmey/php-parser/internal/position" "github.com/VKCOM/php-parser/internal/position"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
// Parser structure // Parser structure

View File

@ -3,14 +3,14 @@ package php8_test
import ( import (
"testing" "testing"
"github.com/z7zmey/php-parser/internal/tester" "github.com/VKCOM/php-parser/internal/tester"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/parser" "github.com/VKCOM/php-parser/pkg/parser"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"gotest.tools/assert" "gotest.tools/assert"
) )

View File

@ -3,15 +3,15 @@ package php8_test
import ( import (
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php8" "github.com/VKCOM/php-parser/internal/php8"
"gotest.tools/assert" "gotest.tools/assert"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
func TestIdentifier(t *testing.T) { func TestIdentifier(t *testing.T) {

View File

@ -11,8 +11,8 @@ import __yyfmt__ "fmt"
import ( import (
"strconv" "strconv"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
// line internal/php8/php8.y:13 // line internal/php8/php8.y:13

View File

@ -4,8 +4,8 @@ package php8
import ( import (
"strconv" "strconv"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
%} %}

View File

@ -4,9 +4,9 @@ import (
"io/ioutil" "io/ioutil"
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php8" "github.com/VKCOM/php-parser/internal/php8"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
func BenchmarkPhp8(b *testing.B) { func BenchmarkPhp8(b *testing.B) {

View File

@ -6,7 +6,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
// line internal/php8/scanner.go:15 // line internal/php8/scanner.go:15

View File

@ -5,7 +5,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
%%{ %%{

View File

@ -3,10 +3,10 @@ package php8_test
import ( import (
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php8" "github.com/VKCOM/php-parser/internal/php8"
"github.com/z7zmey/php-parser/internal/tester" "github.com/VKCOM/php-parser/internal/tester"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"gotest.tools/assert" "gotest.tools/assert"
) )

View File

@ -5,11 +5,11 @@ import (
"gotest.tools/assert" "gotest.tools/assert"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
func TestTokens(t *testing.T) { func TestTokens(t *testing.T) {

View File

@ -1,9 +1,9 @@
package position package position
import ( import (
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
type startPos struct { type startPos struct {

View File

@ -4,10 +4,10 @@ import (
"gotest.tools/assert" "gotest.tools/assert"
"testing" "testing"
builder "github.com/z7zmey/php-parser/internal/position" builder "github.com/VKCOM/php-parser/internal/position"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
func TestNewTokenPosition(t *testing.T) { func TestNewTokenPosition(t *testing.T) {

View File

@ -4,11 +4,11 @@ import (
"bytes" "bytes"
"strings" "strings"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
type Lexer struct { type Lexer struct {

Binary file not shown.

View File

@ -5,7 +5,7 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
%%{ %%{

View File

@ -4,11 +4,11 @@ import (
"gotest.tools/assert" "gotest.tools/assert"
"testing" "testing"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
func TestTokens(t *testing.T) { func TestTokens(t *testing.T) {

View File

@ -3,11 +3,11 @@ package tester
import ( import (
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php8" "github.com/VKCOM/php-parser/internal/php8"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"gotest.tools/assert" "gotest.tools/assert"
) )

View File

@ -3,10 +3,10 @@ package tester
import ( import (
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php8" "github.com/VKCOM/php-parser/internal/php8"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"gotest.tools/assert" "gotest.tools/assert"
) )

View File

@ -3,11 +3,11 @@ package tester
import ( import (
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php8" "github.com/VKCOM/php-parser/internal/php8"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"gotest.tools/assert" "gotest.tools/assert"
) )

View File

@ -4,11 +4,11 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/parser" "github.com/VKCOM/php-parser/pkg/parser"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"github.com/z7zmey/php-parser/pkg/visitor/printer" "github.com/VKCOM/php-parser/pkg/visitor/printer"
"gotest.tools/assert" "gotest.tools/assert"
) )

View File

@ -3,10 +3,10 @@ package tester
import ( import (
"testing" "testing"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/parser" "github.com/VKCOM/php-parser/pkg/parser"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"gotest.tools/assert" "gotest.tools/assert"
) )

View File

@ -4,10 +4,10 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/parser" "github.com/VKCOM/php-parser/pkg/parser"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"github.com/z7zmey/php-parser/pkg/visitor/dumper" "github.com/VKCOM/php-parser/pkg/visitor/dumper"
"gotest.tools/assert" "gotest.tools/assert"
) )

View File

@ -3,10 +3,10 @@ package tester
import ( import (
"testing" "testing"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/parser" "github.com/VKCOM/php-parser/pkg/parser"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"gotest.tools/assert" "gotest.tools/assert"
) )

View File

@ -1,6 +1,6 @@
package ast package ast
import "github.com/z7zmey/php-parser/pkg/position" import "github.com/VKCOM/php-parser/pkg/position"
type Vertex interface { type Vertex interface {
Accept(v Visitor) Accept(v Visitor)

View File

@ -1,8 +1,8 @@
package ast package ast
import ( import (
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
// Root node // Root node

View File

@ -1,8 +1,8 @@
package conf package conf
import ( import (
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
type Config struct { type Config struct {

View File

@ -3,7 +3,7 @@ package errors
import ( import (
"fmt" "fmt"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
) )
// Error parsing error // Error parsing error

View File

@ -5,8 +5,8 @@ import (
"gotest.tools/assert" "gotest.tools/assert"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
) )
func TestConstructor(t *testing.T) { func TestConstructor(t *testing.T) {

View File

@ -10,11 +10,11 @@ Package usage example:
"log" "log"
"os" "os"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/errors" "github.com/VKCOM/php-parser/pkg/errors"
"github.com/z7zmey/php-parser/pkg/parser" "github.com/VKCOM/php-parser/pkg/parser"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"github.com/z7zmey/php-parser/pkg/visitor/dumper" "github.com/VKCOM/php-parser/pkg/visitor/dumper"
) )
func main() { func main() {

View File

@ -3,13 +3,13 @@ package parser
import ( import (
"errors" "errors"
"github.com/z7zmey/php-parser/internal/php5" "github.com/VKCOM/php-parser/internal/php5"
"github.com/z7zmey/php-parser/internal/php7" "github.com/VKCOM/php-parser/internal/php7"
"github.com/z7zmey/php-parser/internal/php8" "github.com/VKCOM/php-parser/internal/php8"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
var ( var (

View File

@ -1,6 +1,6 @@
package token package token
import "github.com/z7zmey/php-parser/pkg/position" import "github.com/VKCOM/php-parser/pkg/position"
//go:generate stringer -type=ID -output ./token_string.go //go:generate stringer -type=ID -output ./token_string.go
type ID int type ID int

View File

@ -5,7 +5,7 @@ import (
"gotest.tools/assert" "gotest.tools/assert"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
) )
func Test(t *testing.T) { func Test(t *testing.T) {

View File

@ -5,10 +5,10 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
) )
type Dumper struct { type Dumper struct {

View File

@ -2,12 +2,12 @@ package dumper_test
import ( import (
"bytes" "bytes"
"github.com/z7zmey/php-parser/pkg/position" "github.com/VKCOM/php-parser/pkg/position"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/visitor/dumper" "github.com/VKCOM/php-parser/pkg/visitor/dumper"
"testing" "testing"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
) )
func TestDumper_root(t *testing.T) { func TestDumper_root(t *testing.T) {

View File

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

View File

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

View File

@ -5,8 +5,8 @@ import (
"errors" "errors"
"strings" "strings"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/visitor" "github.com/VKCOM/php-parser/pkg/visitor"
) )
// NamespaceResolver visitor // NamespaceResolver visitor

View File

@ -1,13 +1,13 @@
package nsresolver_test package nsresolver_test
import ( import (
"github.com/z7zmey/php-parser/pkg/visitor/nsresolver" "github.com/VKCOM/php-parser/pkg/visitor/nsresolver"
"github.com/z7zmey/php-parser/pkg/visitor/traverser" "github.com/VKCOM/php-parser/pkg/visitor/traverser"
"testing" "testing"
"gotest.tools/assert" "gotest.tools/assert"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
) )
func TestResolveStaticCall(t *testing.T) { func TestResolveStaticCall(t *testing.T) {

View File

@ -1,7 +1,7 @@
package visitor package visitor
import ( import (
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
) )
type Null struct { type Null struct {

View File

@ -4,8 +4,8 @@ import (
"bytes" "bytes"
"io" "io"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
) )
type printerState int type printerState int

View File

@ -4,12 +4,12 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php5" "github.com/VKCOM/php-parser/internal/php5"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"github.com/z7zmey/php-parser/pkg/visitor/printer" "github.com/VKCOM/php-parser/pkg/visitor/printer"
) )
func parsePhp5(src string) ast.Vertex { func parsePhp5(src string) ast.Vertex {

View File

@ -5,12 +5,12 @@ import (
"os" "os"
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php7" "github.com/VKCOM/php-parser/internal/php7"
"github.com/z7zmey/php-parser/internal/scanner" "github.com/VKCOM/php-parser/internal/scanner"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"github.com/z7zmey/php-parser/pkg/visitor/printer" "github.com/VKCOM/php-parser/pkg/visitor/printer"
) )
func ExamplePrinter() { func ExamplePrinter() {

View File

@ -5,12 +5,12 @@ import (
"os" "os"
"testing" "testing"
"github.com/z7zmey/php-parser/internal/php8" "github.com/VKCOM/php-parser/internal/php8"
"github.com/z7zmey/php-parser/internal/tester" "github.com/VKCOM/php-parser/internal/tester"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/conf" "github.com/VKCOM/php-parser/pkg/conf"
"github.com/z7zmey/php-parser/pkg/version" "github.com/VKCOM/php-parser/pkg/version"
"github.com/z7zmey/php-parser/pkg/visitor/printer" "github.com/VKCOM/php-parser/pkg/visitor/printer"
"gotest.tools/assert" "gotest.tools/assert"
) )

View File

@ -2,11 +2,11 @@ package printer_test
import ( import (
"bytes" "bytes"
"github.com/z7zmey/php-parser/pkg/token" "github.com/VKCOM/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/visitor/printer" "github.com/VKCOM/php-parser/pkg/visitor/printer"
"testing" "testing"
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
) )
func TestPrinterPrintFile(t *testing.T) { func TestPrinterPrintFile(t *testing.T) {

View File

@ -1,7 +1,7 @@
package traverser package traverser
import ( import (
"github.com/z7zmey/php-parser/pkg/ast" "github.com/VKCOM/php-parser/pkg/ast"
) )
type Traverser struct { type Traverser struct {