()
| 55 | readonly priority = 100; // Highest priority for Angular files |
| 56 | |
| 57 | constructor() { |
| 58 | // Self-register Angular-specific complementary patterns. |
| 59 | // computed + effect are complementary, not conflicting. |
| 60 | registerComplementaryPatterns('reactivity', ['Computed', 'Effect']); |
| 61 | } |
| 62 | |
| 63 | private angularPatterns = { |
| 64 | component: /@Component\s*\(/, |
nothing calls this directly
no test coverage detected