# A polymorphic invocation of a method
# The form of the invocation (name, arguments, etc.) are specific
abstract class ASendExpr
super AExpr
# The receiver of the method invocation
var n_expr: AExpr is writable, noinit
end
src/parser/parser_nodes.nit:2139,1--2145,3