havestuff.go 159 B

1234567
  1. func (p *Parser) HaveStuffToSend() chan []ParserReply {
  2. if len(p.sendMe) > 0 || p.FlagSendNeedInput {
  3. return p.ParsedOutput
  4. }
  5. return nil
  6. }