1
0
Fork 0
kifflom/parser/parser.go

20 lines
242 B
Go
Raw Normal View History

2015-02-16 09:02:49 +00:00
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,
}
}