2018-04-10 20:59:57 +00:00
|
|
|
package parser
|
2018-04-10 17:15:15 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/z7zmey/php-parser/errors"
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
)
|
|
|
|
|
2018-04-10 20:59:57 +00:00
|
|
|
// Parser interface
|
2018-04-10 17:15:15 +00:00
|
|
|
type Parser interface {
|
|
|
|
Parse() int
|
|
|
|
GetPath() string
|
|
|
|
GetRootNode() node.Node
|
|
|
|
GetErrors() []*errors.Error
|
2019-02-25 14:52:47 +00:00
|
|
|
WithFreeFloating()
|
2018-04-10 17:15:15 +00:00
|
|
|
}
|