| 949 | } |
| 950 | |
| 951 | type plpgsqlParserImpl struct { |
| 952 | lval plpgsqlSymType |
| 953 | stack [plpgsqlInitialStackSize]plpgsqlSymType |
| 954 | char int |
| 955 | } |
| 956 | |
| 957 | func (p *plpgsqlParserImpl) Lookahead() int { |
| 958 | return p.char |
nothing calls this directly
no outgoing calls
no test coverage detected