/** * Invocation module barrel * * Re-exports the argument binding and callable invocation strategy used * by the evaluator's invocation pipeline. * * @internal */ export type { BoundArguments } from './arguments-binder.js'; export { ArgumentsBinder } from './arguments-binder.js'; export { CallableInvocationStrategy } from './callable-strategy.js'; export { activeStreamContexts } from './stream-closures.js';