php-parser/pkg/lexer/lexer.go

29 lines
605 B
Go

package lexer
import (
"errors"
"git.maride.cc/maride/php-parser/internal/php7"
"git.maride.cc/maride/php-parser/internal/php8"
"git.maride.cc/maride/php-parser/pkg/conf"
"git.maride.cc/maride/php-parser/pkg/token"
)
var ErrVersionOutOfRange = errors.New("the version is out of supported range")
type Lexer interface {
Lex() *token.Token
}
func New(src []byte, config conf.Config) (Lexer, error) {
if config.Version.InPhp7Range() {
return php7.NewLexer(src, config), nil
}
if config.Version.InPhp8Range() {
return php8.NewLexer(src, config), nil
}
return nil, ErrVersionOutOfRange
}