FunctionDeclarationEntry
data class FunctionDeclarationEntry(val language: String, val methodName: String, val signature: List<String>? = null)
This class is used to identify the FunctionDeclaration of interest for the specified flows.
Properties
Link copied to clipboard
The FQN of the FunctionDeclaration or MethodDeclaration.
Link copied to clipboard
The signature of the FunctionDeclaration. We use a list of the FQN of the Types of parameter. This is optional and if not specified, we perform the matching only based on the methodName.