DFGEntry

data class DFGEntry(val from: String, val to: String, val dfgType: String)

Represents a data flow entry.

Constructors

Link copied to clipboard
constructor(from: String, to: String, dfgType: String)

Properties

Link copied to clipboard

A property which can give us more information. Currently, it's ignored, but it would make sense to add e.g. partial flows based on PR 1421.

Link copied to clipboard

The start of the DFG edge. Can be a parameter (paramX, where X is a number), or base.

Link copied to clipboard
val to: String

The end of the DFG edge. Can be a parameter (paramX, where X is a number), base, or the return value (returnX, where X is optional and a number indicating an index).