io.joern.pysrc2cpg.PythonInheritanceNamePass.scala Maven / Gradle / Ivy
package io.joern.pysrc2cpg
import io.joern.x2cpg.passes.frontend.XInheritanceFullNamePass
import io.shiftleft.codepropertygraph.Cpg
/** Using some basic heuristics, will try to resolve type full names from types found within the CPG. Requires
* ImportPass as a pre-requisite.
*/
class PythonInheritanceNamePass(cpg: Cpg) extends XInheritanceFullNamePass(cpg) {
override val moduleName: String = ""
override val fileExt: String = ".py"
}