1
0
Fork 0
kifflom/parser/parser.go

20 lines
242 B
Go

package parser
import (
"github.com/localhots/punk/lexer"
)
type (
Parser struct {
lex *lexer.Lexer
selector string
}
)
func New(lex *lexer.Lexer, selector string) {
return &Parser{
lex: lex,
selector: selector,
}
}