1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Per-function-call invocation context.
//!
//! Stored on `Engine.pending_calls[body_exec_id]` when an
//! `OpDispatch::FunctionCall` fires. Encodes the runtime aliasing
//! the body's nodes need to read inputs from the caller's scope
//! (zero-copy) and the output forwarding map that lands body outputs
//! back at the caller's slots when they complete.
use HashMap;
use crateFunctionKey;
use crate;
/// Per-call invocation context, keyed by the body's fresh
/// `ExecId` in `Engine.pending_calls`.