Module org.kink_lang.kink
Record Class NestedVecAssignmentItree
java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.itree.NestedVecAssignmentItree
- Record Components:
params- the params.rhs- the right-hand-side of assignment.pos- the pos index of the itree.
- All Implemented Interfaces:
Itree,ItreeElem,ItreeWithRhs
public record NestedVecAssignmentItree(List<NestedParam> params, Itree rhs, int pos)
extends Record
implements ItreeWithRhs
Itree of an args passing in the form
[:X [:A :B] :Y] <- Rhs.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.kink_lang.kink.internal.program.itree.ItreeElem
ItreeElem.Spread -
Constructor Summary
ConstructorsConstructorDescriptionNestedVecAssignmentItree(List<NestedParam> params, Itree rhs, int pos) Constructs an itree. -
Method Summary
Modifier and TypeMethodDescription<T> Taccept(ItreeVisitor<T> visitor) Accepts a visitor.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.lhsRepr()Returns the representation of the left-hand-side.params()Returns the value of theparamsrecord component.intpos()Returns the value of theposrecord component.rhs()Returns the value of therhsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
NestedVecAssignmentItree
Constructs an itree.- Parameters:
params- the params.rhs- the right-hand-side of assignment.pos- the pos index of the itree.
-
-
Method Details
-
lhsRepr
Returns the representation of the left-hand-side.- Returns:
- the representation of the left-hand-side.
-
accept
Description copied from interface:ItreeAccepts a 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 '=='. -
params
Returns the value of theparamsrecord component.- Returns:
- the value of the
paramsrecord component
-
rhs
Returns the value of therhsrecord component.- Specified by:
rhsin interfaceItreeWithRhs- Returns:
- the value of the
rhsrecord component
-
pos
public int pos()Returns the value of theposrecord component.
-