Module index_to_function_calls

Source
Expand description

Desugar array/slice index operations to function calls.

Structs§

IndexVisitor 🔒
We replace some place constructors with function calls. To do that, we explore all the places in a body and deconstruct a given place access into intermediate assignments.
Transform

Functions§

compute_subslice_end_idx
When from_end is true, we need to compute len(p) - last_arg instead of just using last_arg. Otherwise, we simply return last_arg. New local variables are created as needed.