-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
349 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,67 @@ | ||
/// <reference types="ses"/> | ||
|
||
/** @typedef {import('@endo/marshal').Passable} Passable */ | ||
/** @typedef {import('@endo/marshal').PassStyle} PassStyle */ | ||
/** @typedef {import('@endo/marshal').CopyTagged} CopyTagged */ | ||
/** @template T @typedef {import('@endo/marshal').CopyRecord<T>} CopyRecord */ | ||
/** @template T @typedef {import('@endo/marshal').CopyArray<T>} CopyArray */ | ||
/** @typedef {import('@endo/marshal').Checker} Checker */ | ||
/** @typedef {import('@endo/marshal').RankCompare} RankCompare */ | ||
/** @typedef {import('@endo/marshal').RankCover} RankCover */ | ||
|
||
/** @typedef {import('../types.js').AwaitArgGuard} AwaitArgGuard */ | ||
/** @typedef {import('../types.js').ArgGuard} ArgGuard */ | ||
/** @typedef {import('../types.js').MethodGuard} MethodGuard */ | ||
/** @typedef {import('../types.js').InterfaceGuard} InterfaceGuard */ | ||
/** @typedef {import('../types.js').MethodGuardMaker0} MethodGuardMaker0 */ | ||
|
||
/** @typedef {import('../types').MatcherNamespace} MatcherNamespace */ | ||
/** @typedef {import('../types').Key} Key */ | ||
/** @typedef {import('../types').Pattern} Pattern */ | ||
/** @typedef {import('../types').CheckPattern} CheckPattern */ | ||
/** @typedef {import('../types').Limits} Limits */ | ||
/** @typedef {import('../types').AllLimits} AllLimits */ | ||
/** @typedef {import('../types').GetRankCover} GetRankCover */ | ||
|
||
/** | ||
* @typedef {object} MatchHelper | ||
* This factors out only the parts specific to each kind of Matcher. It is | ||
* encapsulated, and its methods can make the stated unchecked assumptions | ||
* enforced by the common calling logic. | ||
* | ||
* @property {(allegedPayload: Passable, | ||
* check: Checker | ||
* ) => boolean} checkIsWellFormed | ||
* Reports whether `allegedPayload` is valid as the payload of a CopyTagged | ||
* whose tag corresponds with this MatchHelper's Matchers. | ||
* | ||
* @property {(specimen: Passable, | ||
* matcherPayload: Passable, | ||
* check: Checker, | ||
* ) => boolean} checkMatches | ||
* Assuming validity of `matcherPayload` as the payload of a Matcher corresponding | ||
* with this MatchHelper, reports whether `specimen` is matched by that Matcher. | ||
* | ||
* @property {import('../types').GetRankCover} getRankCover | ||
* Assumes this is the payload of a CopyTagged with the corresponding | ||
* matchTag. Return a RankCover to bound from below and above, | ||
* in rank order, all possible Passables that would match this Matcher. | ||
* The left element must be before or the same rank as any possible | ||
* matching specimen. The right element must be after or the same | ||
* rank as any possible matching specimen. | ||
*/ | ||
|
||
/** | ||
* @typedef {object} PatternKit | ||
* @property {(specimen: Passable, | ||
* patt: Passable, | ||
* check: Checker, | ||
* label?: string|number | ||
* ) => boolean} checkMatches | ||
* @property {(specimen: Passable, patt: Pattern) => boolean} matches | ||
* @property {(specimen: Passable, patt: Pattern, label?: string|number) => void} mustMatch | ||
* @property {(patt: Pattern) => void} assertPattern | ||
* @property {(patt: Passable) => boolean} isPattern | ||
* @property {GetRankCover} getRankCover | ||
* @property {MatcherNamespace} M | ||
*/ |
Oops, something went wrong.