visitInvokeMethodExpr method
Implementation
@override
Expression visitInvokeMethodExpr(InvokeMethodExpr ast, C context) {
var method = ast.builtin ?? ast.name;
return InvokeMethodExpr(
ast.receiver.visitExpression(this, context),
method,
visitAllExpressions(ast.args, context),
outputType: ast.type,
checked: ast.checked,
);
}