(l *lexer)
| 53 | } |
| 54 | |
| 55 | func insertIntoTableState(l *lexer) state { |
| 56 | l.start = l.pos |
| 57 | l.pos += 12 |
| 58 | |
| 59 | l.emit(TInsertInto) |
| 60 | return identifierStateBuilder(insertValuesState) |
| 61 | } |
| 62 | |
| 63 | func insertValuesState(l *lexer) state { |
| 64 | l.start = l.pos |
nothing calls this directly
no test coverage detected