yacc interface {{{
| 436 | // yacc interface {{{ |
| 437 | |
| 438 | type Lexer struct { |
| 439 | scanner *Scanner |
| 440 | Stmts []ast.Stmt |
| 441 | PNewLine bool |
| 442 | Token ast.Token |
| 443 | PrevTokenType int |
| 444 | } |
| 445 | |
| 446 | func (lx *Lexer) Lex(lval *yySymType) int { |
| 447 | lx.PrevTokenType = lx.Token.Type |
nothing calls this directly
no outgoing calls
no test coverage detected