Module org.kink_lang.kink
Record Class SymcallItree
java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.itree.SymcallItree
- Record Components:
fun
- the fun to be called.sym
- the sym of the call.recv
- the actual recv of the call.args
- the actual args of the call.pos
- the pos of the call.
public record SymcallItree(Itree fun, String sym, Itree recv, List<ItreeElem> args, int pos)
extends Record
implements Itree
A fun call which is not a method call,
and has a sym.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.kink_lang.kink.internal.program.itree.ItreeElem
ItreeElem.Spread
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<T> T
accept
(ItreeVisitor<T> visitor) Accepts a visitor.args()
Returns the value of theargs
record component.final boolean
Indicates whether some other object is "equal to" this one.fun()
Returns the value of thefun
record component.final int
hashCode()
Returns a hash code value for this object.boolean
isLocalCallOf
(String sym) Returns whether the call is a call of a local fun.int
pos()
Returns the value of thepos
record component.recv()
Returns the value of therecv
record component.sym()
Returns the value of thesym
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
SymcallItree
Constructs an itree.- Parameters:
fun
- the fun to be called.sym
- the sym of the call.recv
- the actual recv of the call.args
- the actual args of the call.pos
- the pos of the call.
-
-
Method Details
-
isLocalCallOf
Returns whether the call is a call of a local fun.- Parameters:
sym
- the sym to be tested.- Returns:
- whether the call is a call of a local fun.
-
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 '=='. -
fun
Returns the value of thefun
record component.- Returns:
- the value of the
fun
record component
-
sym
Returns the value of thesym
record component.- Returns:
- the value of the
sym
record component
-
recv
Returns the value of therecv
record component.- Returns:
- the value of the
recv
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.
-