php-parser/parser/parser.go
2019-02-25 16:52:47 +02:00

16 lines
255 B
Go

package parser
import (
"github.com/z7zmey/php-parser/errors"
"github.com/z7zmey/php-parser/node"
)
// Parser interface
type Parser interface {
Parse() int
GetPath() string
GetRootNode() node.Node
GetErrors() []*errors.Error
WithFreeFloating()
}