java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.callstack.HostResumeCse
- Record Components:
handler
- the handler of the result.symHandle
- the syme handle of the invocation.
public record HostResumeCse(HostFunReaction handler, int symHandle)
extends Record
implements ResumeCse
Call stack element which indicates resumption of a host fun call.
-
Constructor Summary
ConstructorDescriptionHostResumeCse
(HostFunReaction handler, int symHandle) Creates an instance of aHostResumeCse
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.handler()
Returns the value of thehandler
record component.final int
hashCode()
Returns a hash code value for this object.int
Returns the value of thesymHandle
record component.final String
toString()
Returns a string representation of this record class.trace
(int programCounter) Returns the trace under the given program counter.
-
Constructor Details
-
Method Details
-
trace
Description copied from interface:Cse
Returns the trace under the given program counter. -
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 '=='. -
handler
Returns the value of thehandler
record component.- Returns:
- the value of the
handler
record component
-
symHandle
public int symHandle()Returns the value of thesymHandle
record component.- Returns:
- the value of the
symHandle
record component
-