R/static-analysis.R
annotate_bound_symbols_in_function.Rd
Extracts all the symbols that appear on the left-hand side of an assignment or as function parameters and annotate each sub-expression with those.
annotate_bound_symbols_in_function(fn)
fn | The function whose body we should analyse |
---|
A function who's expressions are annotated with potentially local variables.
This function will annotate a function's body with two attributes for each
sub-expression in the body. Each call
expression in the body will be
annotated with these two attributes:
assigned_symbols: Variables that appear to the left of an assignment in a sub-expression of the call that is likely to affect the scope of the call.
bound: Variables that are either assigned to, thus potentially local in the scope, or function parameters from an enclosing scope, which will definitely be bound at this position.
Since R does not require that we declare local variables, and since the variables that are assigned to a local scope depend on the runtime execution of functions, we cannot determine with any certainty which variables will be assigned to in any given scope at any given program point. So the best we can do is figure out which variables are potentially assigned to. Which is what this function does.
The rules for when we are assigning to a local variable are a bit
complicated. For control structures, we can assume that assignments will
be to the local scope. People can change the implementation of these so it
isn't, but then they are only hurting themselves and deserve the extra
pain we can give them. For other call arguments, it gets a little more
complicated. With standard-evaluation, if we have an arrow assignment in a
function argument, then the assignment happens in the calling scope. So we
will assume this happens unless we are handling cases we know have NSE,
such as with
. If an assignment is inside a block, however, we will
assume that NSE is in play, by default, and not consider it a local
assignment.