php-parser/internal/php5/parser.go

67 lines
1.3 KiB
Go
Raw Normal View History

2018-01-26 13:24:56 +00:00
package php5
import (
"github.com/VKCOM/php-parser/internal/position"
"github.com/VKCOM/php-parser/internal/scanner"
"github.com/VKCOM/php-parser/pkg/ast"
"github.com/VKCOM/php-parser/pkg/conf"
"github.com/VKCOM/php-parser/pkg/errors"
"github.com/VKCOM/php-parser/pkg/token"
2018-01-26 13:24:56 +00:00
)
// Parser structure
type Parser struct {
2020-06-29 20:00:56 +00:00
Lexer *scanner.Lexer
2020-08-17 17:31:04 +00:00
currentToken *token.Token
2020-06-29 20:00:56 +00:00
rootNode ast.Vertex
errHandlerFunc func(*errors.Error)
2020-12-29 19:23:22 +00:00
builder *position.Builder
}
2018-01-26 13:24:56 +00:00
// NewParser creates and returns new Parser
2021-02-13 21:54:34 +00:00
func NewParser(lexer *scanner.Lexer, config conf.Config) *Parser {
2020-06-29 20:00:56 +00:00
return &Parser{
Lexer: lexer,
2020-12-29 19:23:22 +00:00
errHandlerFunc: config.ErrorHandlerFunc,
builder: position.NewBuilder(),
}
}
2018-02-04 16:51:44 +00:00
// Lex proxy to scanner Lex
2020-06-29 11:15:58 +00:00
func (p *Parser) Lex(lval *yySymType) int {
t := p.Lexer.Lex()
2020-06-29 11:15:58 +00:00
p.currentToken = t
lval.token = t
return int(t.ID)
}
2020-06-29 11:15:58 +00:00
func (p *Parser) Error(msg string) {
if p.errHandlerFunc == nil {
return
}
2020-08-17 17:31:04 +00:00
p.errHandlerFunc(errors.NewError(msg, p.currentToken.Position))
}
// Parse the php7 Parser entrypoint
2020-06-29 11:15:58 +00:00
func (p *Parser) Parse() int {
p.rootNode = nil
return yyParse(p)
2018-01-26 13:24:56 +00:00
}
// GetRootNode returns root node
2020-06-29 11:15:58 +00:00
func (p *Parser) GetRootNode() ast.Vertex {
return p.rootNode
2018-01-26 13:24:56 +00:00
}
2018-06-06 23:25:27 +00:00
// helpers
2020-05-13 17:18:53 +00:00
func lastNode(nn []ast.Vertex) ast.Vertex {
2018-06-26 08:57:17 +00:00
if len(nn) == 0 {
return nil
}
2018-06-06 23:25:27 +00:00
return nn[len(nn)-1]
}