Lexer doesn't need a name
This commit is contained in:
parent
0f04fa41e8
commit
2e6cafb1cb
|
@ -60,7 +60,7 @@ const (
|
|||
)
|
||||
|
||||
// lex creates a new scanner for the input string.
|
||||
func New(name, input string) *Lexer {
|
||||
func New(input string) *Lexer {
|
||||
l := &Lexer{
|
||||
input: input,
|
||||
items: make(chan Item),
|
||||
|
|
Loading…
Reference in New Issue