Record Class Methods.RetReqEm<T extends Types.BType>
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.gen.util.Methods.RetReqEm<T>
- Type Parameters:
T- the required return type
- Enclosing interface:
Methods
public static record Methods.RetReqEm<T extends Types.BType>(Methods.RetReq<T extends Types.BType> ret, Emitter<Emitter.Bot> em)
extends Record
A tuple of return request and emitter with empty stack
-
Constructor Summary
ConstructorsConstructorDescriptionRetReqEm(Methods.RetReq<T> ret, Emitter<Emitter.Bot> em) Creates an instance of aRetReqEmrecord class. -
Method Summary
Modifier and TypeMethodDescriptionem()Returns the value of theemrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.ret()Returns the value of theretrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
RetReqEm
Creates an instance of aRetReqEmrecord class.- Parameters:
ret- the value for theretrecord componentem- the value for theemrecord component
-
-
Method Details
-
toString
-
hashCode
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
ret
Returns the value of theretrecord component.- Returns:
- the value of the
retrecord component
-
em
Returns the value of theemrecord component.- Returns:
- the value of the
emrecord component
-