All files / tao/src constants.js

100% Statements 5/5
100% Branches 0/0
100% Functions 0/0
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11  7x   7x   7x   7x   7x  
/** Trigram part that matches any value; a missing or empty part means the same. */
export const WILDCARD = '*';
/** Handler phase: runs first; a truthy return halts the signal, an AppCtx return diverts it. */
export const INTERCEPT = 'Intercept';
/** Handler phase: forked outside the caller's synchronous flow after intercepts pass. */
export const ASYNC = 'Async';
/** Handler phase: runs in the caller's execution context; returned AppCtxs spool, then set. */
export const INLINE = 'Inline';
/** Settlement phase reported to `onReturn` for thrown handler errors (not a handler phase). */
export const ERROR = 'Error';