Module org.kink_lang.kink
Record Class TraitNewValItree
java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.itree.TraitNewValItree
- Record Components:
trait- the itree of the expected trait, which is spreaded on the head.spreadPos- the pos of the spreading of the trait.symValPairs- sym-val pairs.pos- the pos index of the itree.
public record TraitNewValItree(Itree trait, int spreadPos, List<SymValPair> symValPairs, int pos)
extends Record
implements Itree
Itree of new_val(... Trait 'X' x 'Y' y).
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.kink_lang.kink.internal.program.itree.ItreeElem
ItreeElem.Spread -
Constructor Summary
ConstructorsConstructorDescriptionTraitNewValItree(Itree trait, int spreadPos, List<SymValPair> symValPairs, 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.intpos()Returns the value of theposrecord component.intReturns the value of thespreadPosrecord component.Returns the value of thesymValPairsrecord component.final StringtoString()Returns a string representation of this record class.trait()Returns the value of thetraitrecord component.
-
Constructor Details
-
TraitNewValItree
Constructs an itree.syms and vals must have the same size.
- Parameters:
trait- the itree of the expected trait, which is spreaded on the head.spreadPos- the pos of the spreading of the trait.symValPairs- sym-val pairs.pos- the pos index of the itree.
-
-
Method Details
-
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 '=='. -
trait
Returns the value of thetraitrecord component.- Returns:
- the value of the
traitrecord component
-
spreadPos
public int spreadPos()Returns the value of thespreadPosrecord component.- Returns:
- the value of the
spreadPosrecord component
-
symValPairs
Returns the value of thesymValPairsrecord component.- Returns:
- the value of the
symValPairsrecord component
-
pos
public int pos()Returns the value of theposrecord component.
-