(
script: &'a CompiledScript,
dependencies: impl IntoIterator<Item = &'b CompiledModule>,
)
| 42 | } |
| 43 | |
| 44 | fn script( |
| 45 | script: &'a CompiledScript, |
| 46 | dependencies: impl IntoIterator<Item = &'b CompiledModule>, |
| 47 | ) -> Self { |
| 48 | Self::new(BinaryIndexedView::Script(script), dependencies) |
| 49 | } |
| 50 | |
| 51 | fn new( |
| 52 | resolver: BinaryIndexedView<'a>, |