StepEventModifier is an EventModifier that filters step events to those which satisfy depth and size constraints. Can only be used with step events.
| 164 | // satisfy depth and size constraints. |
| 165 | // Can only be used with step events. |
| 166 | type StepEventModifier struct { |
| 167 | Thread ThreadID |
| 168 | Size int |
| 169 | Depth int |
| 170 | } |
| 171 | |
| 172 | // InstanceOnlyEventModifier is an EventModifier that filters events to those |
| 173 | // which have the specified 'this' object. |
nothing calls this directly
no outgoing calls
no test coverage detected