Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2588,10 +2588,6 @@ class ReadOnlyStore implements SessionStore {
throw new Error('not implemented');
}

async setExecutionBoundaryKind(): Promise<never> {
throw new Error('not implemented');
}

async readExecutionBoundary(): Promise<never> {
throw new Error('not implemented');
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -615,9 +615,6 @@ function memoryStore(): SessionStore {
return {
create: async () => header,
createSubagent: async () => ({ header, created: false }),
setExecutionBoundaryKind: async () => {
throw new Error('not implemented');
},
readExecutionBoundary: async () => {
throw new Error('not implemented');
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2305,10 +2305,6 @@ class TinySessionStore implements SessionStore {
return clone(header);
}

async setExecutionBoundaryKind(): Promise<never> {
throw new Error('not implemented');
}

async readExecutionBoundary(): Promise<never> {
throw new Error('not implemented');
}
Expand Down
Loading