===== LoopStep =====
| 370 | // ===== LoopStep ===== |
| 371 | |
| 372 | type LoopStep struct { |
| 373 | id string |
| 374 | name string |
| 375 | description string |
| 376 | body Step |
| 377 | maxIterations int |
| 378 | stopCondition func(*StepOutput) bool |
| 379 | config *StepConfig |
| 380 | } |
| 381 | |
| 382 | func NewLoopStep(name string, body Step, maxIterations int) *LoopStep { |
| 383 | return &LoopStep{ |
nothing calls this directly
no outgoing calls
no test coverage detected