scanNumber is similar to Scanner.scanNumber, but uses PL/pgSQL tokens.
(lval ScanSymType, ch int)
| 331 | |
| 332 | // scanNumber is similar to Scanner.scanNumber, but uses PL/pgSQL tokens. |
| 333 | func (s *PLpgSQLScanner) scanNumber(lval ScanSymType, ch int) { |
| 334 | s.scanNumberImpl(lval, ch, lexbase.ERROR, lexbase.FCONST, lexbase.ICONST) |
| 335 | } |
| 336 | |
| 337 | // scanIdent is similar to Scanner.scanIdent, but uses PL/pgSQL tokens. |
| 338 | func (s *PLpgSQLScanner) scanIdent(lval ScanSymType) { |