php-parser/parser/parser.go

17 lines
285 B
Go
Raw Normal View History

package parser
2018-04-10 17:15:15 +00:00
import (
"github.com/z7zmey/php-parser/errors"
"github.com/z7zmey/php-parser/node"
)
// Parser interface
2018-04-10 17:15:15 +00:00
type Parser interface {
Parse() int
GetPath() string
GetRootNode() node.Node
GetErrors() []*errors.Error
GetComments() Comments
GetPositions() Positions
2018-04-10 17:15:15 +00:00
}