mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-30 04:40:37 +00:00
docs(code-runtime-python): name the roster aliases by subset direction, align metering prose
Rename UnionCoversRoster/RosterCoversUnion to UnionSubsetOfRoster/RosterSubsetOfUnion so the names read in the same direction as their extends clauses, share the python3 -I -B flags between the two mirror probes, and align the README and Agent Note prose with the checkDoneValue JSDoc: the escaped-size scan is the metering itself, not deferred work. Regenerate docs/module-graph.md, which listed code-runtime-python twice.
This commit is contained in:
@@ -205,12 +205,12 @@ type RosterMessageFrames = Exclude<WireFrameShapes[keyof WireFrameShapes], Names
|
||||
* `false`, failing the assignment below. Type-only; the `const`s emit nothing
|
||||
* meaningful at runtime.
|
||||
*/
|
||||
type UnionCoversRoster = [MessageFrames] extends [RosterMessageFrames] ? true : false
|
||||
type RosterCoversUnion = [RosterMessageFrames] extends [MessageFrames] ? true : false
|
||||
const _unionCoversRoster: UnionCoversRoster = true
|
||||
const _rosterCoversUnion: RosterCoversUnion = true
|
||||
void _unionCoversRoster
|
||||
void _rosterCoversUnion
|
||||
type UnionSubsetOfRoster = [MessageFrames] extends [RosterMessageFrames] ? true : false
|
||||
type RosterSubsetOfUnion = [RosterMessageFrames] extends [MessageFrames] ? true : false
|
||||
const _unionSubsetOfRoster: UnionSubsetOfRoster = true
|
||||
const _rosterSubsetOfUnion: RosterSubsetOfUnion = true
|
||||
void _unionSubsetOfRoster
|
||||
void _rosterSubsetOfUnion
|
||||
|
||||
/**
|
||||
* Each frame's wire fields tagged by required/optional, keyed by field name so
|
||||
|
||||
Reference in New Issue
Block a user