refactor(schedule): derive marker section text type

This commit is contained in:
pku-xht
2026-08-07 21:04:09 +08:00
committed by Tianyi Cui
parent de3e0a5d1c
commit d8a85dcafd
4 changed files with 0 additions and 9 deletions

View File

@@ -245,7 +245,6 @@ function isTimeContextReading(event: SessionEvent): boolean {
&& section !== undefined
&& Object.keys(section).length === 2
&& section.name === 'time-context'
&& typeof section.text === 'string'
&& section.text === block.text
}

View File

@@ -391,7 +391,6 @@ describe('Schedule tool protocol', () => {
['a non-object text block', 7, [{ name: 'time-context', text: 'time context' }]],
['matched non-string text', { type: 'text', text: 7 }, [{ name: 'time-context', text: 7 }]],
['extra text-block field', { type: 'text', text: 'time context', extra: true }, [{ name: 'time-context', text: 'time context' }]],
['non-string section text', { type: 'text', text: 'time context' }, [{ name: 'time-context', text: 7 }]],
['extra section field', { type: 'text', text: 'time context' }, [{ name: 'time-context', text: 'time context', extra: true }]],
] as const)(
'does not let snapshot provenance with %s authorize an implicit local at',