(
ctx: MemoryScopeContext,
scope: MemoryScope,
relPath: string,
actor: MemoryActor
)
| 624 | } |
| 625 | |
| 626 | private emitChange( |
| 627 | ctx: MemoryScopeContext, |
| 628 | scope: MemoryScope, |
| 629 | relPath: string, |
| 630 | actor: MemoryActor |
| 631 | ) { |
| 632 | const event: MemoryChangeEvent = { |
| 633 | scope, |
| 634 | path: toVirtualPath(scope, relPath), |
| 635 | actor, |
| 636 | workspaceId: ctx.workspaceId, |
| 637 | projectPath: ctx.projectPath, |
| 638 | }; |
| 639 | this.emit("change", event); |
| 640 | } |
| 641 | |
| 642 | // ------------------------------------------------------------------------- |
| 643 | // Commands |
no test coverage detected