nitc :: VirtualMachine :: numbering
n
Do nothing if n is null
# Number the variables in `n`. # Do nothing if `n` is null fun numbering(n: nullable AExpr, position: Int): Int do if n == null then return position var pos = n.numbering(self, position) return pos end