nitc :: AExpr :: comprehension
self
is a leaf of a comprehension array construction.In this case, the enclosing literal array node is designated.
The result of the evaluation of self
must be
stored inside the designated array (there is an implicit push
)
# Is non-null if `self` is a leaf of a comprehension array construction.
# In this case, the enclosing literal array node is designated.
# The result of the evaluation of `self` must be
# stored inside the designated array (there is an implicit `push`)
var comprehension: nullable AArrayExpr = null
src/semantize/typing.nit:1014,2--1018,46