Cleanup: Remove unused variable (#6581)

Signed-off-by: Tobias Guggenmos <tguggenm@redhat.com>
pull/6589/head
Tobias Guggenmos 5 years ago committed by Brian Brazil
parent 7c7746257c
commit 2064abab40

@ -29,9 +29,8 @@ import (
)
type parser struct {
lex *Lexer
token Item
peeking bool
lex *Lexer
token Item
inject Item
injecting bool
@ -134,16 +133,12 @@ func (p *parser) typecheck(node Node) (err error) {
// next returns the next token.
func (p *parser) next() Item {
if !p.peeking {
t := p.lex.NextItem()
// Skip comments.
for t.Typ == COMMENT {
t = p.lex.NextItem()
}
p.token = t
t := p.lex.NextItem()
// Skip comments.
for t.Typ == COMMENT {
t = p.lex.NextItem()
}
p.peeking = false
p.token = t
if p.token.Typ == ERROR {
p.errorf("%s", p.token.Val)

Loading…
Cancel
Save