(name string, activeTools []string)
| 1829 | } |
| 1830 | |
| 1831 | func isToolActive(name string, activeTools []string) bool { |
| 1832 | return len(activeTools) == 0 || slices.Contains(activeTools, name) |
| 1833 | } |
| 1834 | |
| 1835 | // mergeNewToolNames returns activeTools augmented with any tool names |
| 1836 | // from newTools that are not present in oldTools and not already in |
no test coverage detected