Interface ITypeListener
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ITypeListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeUpdateResultupdate(TypeUpdateInfo updateInfo, InsnNode insn, InsnArg arg, @NotNull ArgType candidateType)Listener function - triggered on type update
-
-
-
Method Detail
-
update
TypeUpdateResult update(TypeUpdateInfo updateInfo, InsnNode insn, InsnArg arg, @NotNull @NotNull ArgType candidateType)
Listener function - triggered on type update- Parameters:
updateInfo- store all allowed type updatesarg- apply suggested type for this argcandidateType- suggest new type
-
-