You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val cpg = Py2CpgOnFileSystem().createCpg(config = config).get
try {
val context = new LayerCreatorContext(cpg)
new Base().run(context)
new TypeRelations().run(context)
new ControlFlow().run(context)
new CallGraph().run(context)
val options = new OssDataFlowOptions()
new OssDataFlow(options).run(context)
codePropertyGraph = cpg
} catch {
case e: Exception =>
throw e
}
cpg.close()`
The cpg created using the above code may have missing nodes compared to the cpg nodes loaded by joern-cli's importCpg function, specifically some nodes that are dependent on third-party components. Am I missing some SDKs loaded on other edges or nodes?
The text was updated successfully, but these errors were encountered:
`val config = io.joern.pysrc2cpg.Py2CpgOnFileSystemConfig()
config.inputPath = "./sast-benchmark-master-python-flask"
config.outputPath = "./cpg.bin.zip"
The cpg created using the above code may have missing nodes compared to the cpg nodes loaded by joern-cli's importCpg function, specifically some nodes that are dependent on third-party components. Am I missing some SDKs loaded on other edges or nodes?
The text was updated successfully, but these errors were encountered: