MethodCall class

A call to a method.

// a.foo('bar', baz: 123)
MethodCall(
  VariableRead('a'),
  'foo',
  [LiteralPrimitive('bar')],
  [NamedExpr('baz', LiteralPrimitive(123))],
)
Inheritance

Constructors

MethodCall(AST receiver, String name, List<AST> args, [List<NamedExpr> namedArgs = const []])

Properties

args List<AST>
final
hashCode int
The hash code for this object.
no setterinherited
name String
final
namedArgs List<NamedExpr>
final
receiver AST
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
visit<R, C, CO extends C>(AstVisitor<R, C?> visitor, [CO? context]) → R
Given a visitor and optionally a context, produce a return value R.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited