Module org.kink_lang.kink
Record Class VarrefVecAssignmentItree
java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.itree.VarrefVecAssignmentItree
- Record Components:
params
- the varref params of the lhs.rhs
- the right-hand-side of the assignment.pos
- the pos index of the assignment.
public record VarrefVecAssignmentItree(List<VarrefParam> params, Itree rhs, int pos)
extends Record
implements Itree
Assignment in the form
[:Foo X:Bar] <- Rhs
.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.kink_lang.kink.internal.program.itree.ItreeElem
ItreeElem.Spread
-
Constructor Summary
ConstructorDescriptionVarrefVecAssignmentItree
(List<VarrefParam> params, Itree rhs, int pos) Constructs an assignment. -
Method Summary
Modifier and TypeMethodDescription<T> T
accept
(ItreeVisitor<T> visitor) Accepts a visitor.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.lhsRepr()
Returns the string representation of the left hand side.params()
Returns the value of theparams
record component.int
pos()
Returns the value of thepos
record component.rhs()
Returns the value of therhs
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
VarrefVecAssignmentItree
Constructs an assignment.- Parameters:
params
- the varref params of the lhs.rhs
- the right-hand-side of the assignment.pos
- the pos index of the assignment.
-
-
Method Details
-
lhsRepr
Returns the string representation of the left hand side.- Returns:
- the string representation of the left hand side.
-
accept
Description copied from interface:Itree
Accepts 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 theparams
record component.- Returns:
- the value of the
params
record component
-
rhs
Returns the value of therhs
record component.- Returns:
- the value of the
rhs
record component
-
pos
public int pos()Returns the value of thepos
record component.
-