Kind: Interface
Source: atloria-monorepo/libs/parser-core/src/utils/semantic-detector.ts
Semantic Pattern Detector
Detects semantic patterns in code to understand business logic:
- State machines (enums with Stage/Status/State)
- State transitions (methods that change state)
- Modal/dialog triggers
- Approval workflows
This enables comprehensive documentation and screenshot capture.
Properties
| Property | Type |
|---|---|
hasStateMachine | boolean |
stateEnums | string[] |
transitionMethods | string[] |
modalTriggers | string[] |
approvalStates | string[] |
Was this page helpful?