| 116 | } |
| 117 | |
| 118 | type lexer struct { |
| 119 | scanner.Scanner |
| 120 | expr *RootExpr |
| 121 | parser *yyParserImpl |
| 122 | errs []*ParseError |
| 123 | |
| 124 | parsingAttribute bool |
| 125 | currentScope int |
| 126 | } |
| 127 | |
| 128 | func (l *lexer) Lex(lval *yySymType) int { |
| 129 | // if we are currently parsing an attribute and the next rune suggests that |
nothing calls this directly
no outgoing calls
no test coverage detected