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.

Constructors

Link copied to clipboard
constructor(language: String, methodName: String, signature: List<String>? = null)

Properties

Link copied to clipboard

The FQN of the Language for which this flow is relevant.

Link copied to clipboard
Link copied to clipboard
val signature: List<String>? = null

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.