You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(step-generation): consistent names for misc.ts location helper functions (#17848)
# Overview
There are 4 helper functions in `misc.ts` that have the same structure
of performing an action at some well or trash bin or waste chute:
- `blowoutUtil()`
- `dispenseLocationHelper()`
- `airGapHelper()`
- and coming soon: a `delay()`-at-location helper
These are also the only functions that emit `CommandCreators` in
`misc.ts`.
I'd like to give them all consistent names to make them easier to
recognize. So I'd like to rename them to:
- `blowoutLocationHelper()`
- `dispenseLocationHelper()`
- `airGapLocationHelper()`
- `delayLocationHelper()` (coming soon, will replace `moveHelper()`)
## Test Plan and Hands on Testing
I'm relying on existing CI tests to make sure I don't break anything.
## Risk assessment
Pure refactoring, there should be no functional change at all.
0 commit comments