MCPcopy Create free account
hub / github.com/PatrickSys/codebase-context / isComplementaryPatternCategory

Function isComplementaryPatternCategory

src/patterns/semantics.ts:40–44  ·  view source on GitHub ↗
(category: string, patternNames: string[])

Source from the content-addressed store, hash-verified

38}
39
40export function isComplementaryPatternCategory(category: string, patternNames: string[]): boolean {
41 const set = complementaryPairs.get(category);
42 if (!set || patternNames.length < 2) return false;
43 return patternNames.every((name) => set.has(normalizePatternName(name)));
44}
45
46export function shouldSkipLegacyTestingFrameworkCategory(
47 category: string,

Callers 1

Calls 3

normalizePatternNameFunction · 0.85
hasMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected