File tree Expand file tree Collapse file tree
dataflowengineoss/src/main/scala/io/shiftleft/dataflowengineoss/language
semanticcpg/src/main/scala/io/shiftleft/semanticcpg/language/types/expressions Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,12 +13,6 @@ import scala.collection.mutable
1313 * */
1414class TrackingPoint (val traversal : Traversal [nodes.TrackingPoint ]) extends AnyVal {
1515
16- /**
17- * The enclosing method of the tracking point
18- * */
19- def method : Traversal [nodes.Method ] =
20- traversal.map(_.method)
21-
2216 /**
2317 * Convert to nearest CFG node
2418 * */
Original file line number Diff line number Diff line change @@ -21,12 +21,6 @@ class Call(val traversal: Traversal[nodes.Call]) extends AnyVal {
2121 def isDynamic : Traversal [nodes.Call ] =
2222 traversal.dispatchType(" DYNAMIC_DISPATCH" )
2323
24- /**
25- The caller
26- */
27- def method : Traversal [nodes.Method ] =
28- traversal.in(EdgeTypes .CONTAINS ).hasLabel(NodeTypes .METHOD ).cast[nodes.Method ]
29-
3024 /**
3125 The receiver of a call if the call has a receiver associated.
3226 */
You can’t perform that action at this time.
0 commit comments