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
ConstructorsConstructorDescriptionHostResumeCse(HostFunReaction handler, int symHandle) Creates an instance of aHostResumeCserecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.handler()Returns the value of thehandlerrecord component.final inthashCode()Returns a hash code value for this object.intReturns the value of thesymHandlerecord component.final StringtoString()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:CseReturns 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 thehandlerrecord component.- Returns:
- the value of the
handlerrecord component
-
symHandle
public int symHandle()Returns the value of thesymHandlerecord component.- Returns:
- the value of the
symHandlerecord component
-