java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.ast.McallExpr
- Record Components:
ownerRecv
- the owner-recv.sym
- the sym.args
- the actual args.pos
- the start pos of the node.
public record McallExpr(Expr ownerRecv, String sym, List<Elem> args, int pos)
extends Record
implements Expr
An attributional call expression without an explicit recv.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.kink_lang.kink.internal.program.ast.Elem
Elem.Spread
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<T> T
accept
(ExprVisitor<T> visitor) Accepts a node visitor.args()
Returns the value of theargs
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theownerRecv
record component.int
pos()
Returns the value of thepos
record component.sym()
Returns the value of thesym
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
McallExpr
Constructs an attributional call expression without an explicit recv.- Parameters:
ownerRecv
- the owner-recv.sym
- the sym.args
- the actual args.pos
- the start pos of the node.
-
-
Method Details
-
accept
Description copied from interface:Expr
Accepts a node visitor. -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
ownerRecv
Returns the value of theownerRecv
record component.- Returns:
- the value of the
ownerRecv
record component
-
sym
Returns the value of thesym
record component.- Returns:
- the value of the
sym
record component
-
args
Returns the value of theargs
record component.- Returns:
- the value of the
args
record component
-
pos
public int pos()Returns the value of thepos
record component.
-