package types
- Alphabetic
- Public
- All
Type Members
-
case class
NodeTuple[T <: StoredNode, R <: Product](repr: T, caseClass: R) extends Product with Serializable
A node tuple, represented in the graph by
repr, and defined by the product type R.A node tuple, represented in the graph by
repr, and defined by the product type R.To define a node tuple, add a node type to the CPG definition, then create a case class in a
resulttypespackage, and finally, add a class that derives fromNodeTuple, whereTis set to the type of the CPG node, and R is the type of your case class.