(state fsm.State)
| 302 | } |
| 303 | |
| 304 | func (s *sequenceState) expr(state fsm.State) string { |
| 305 | seqID, ok := state.(int) |
| 306 | if !ok { |
| 307 | return "" |
| 308 | } |
| 309 | return s.exprs[seqID] |
| 310 | } |
| 311 | |
| 312 | // addPartial appends the event that matched the expression at the |
| 313 | // sequence index. If the event arrived out of order, then the isOOO |
no outgoing calls