visitInvokeMethodExpr method

  1. @override
Expression visitInvokeMethodExpr(
  1. InvokeMethodExpr ast,
  2. C context
)
override

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,
  );
}