Kotlin2Cpg

io.joern.kotlin2cpg.Kotlin2Cpg
See theKotlin2Cpg companion object
class Kotlin2Cpg extends X2CpgFrontend[Config], UsesService

Attributes

Companion
object
Graph
Supertypes
trait UsesService
trait X2CpgFrontend[Config]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def createCpg(config: Config): Try[Cpg]

Create a CPG according to given configuration. Returns CPG wrapped in a Try, making it possible to detect and inspect exceptions in CPG generation. To be provided by the frontend.

Create a CPG according to given configuration. Returns CPG wrapped in a Try, making it possible to detect and inspect exceptions in CPG generation. To be provided by the frontend.

Attributes

Inherited methods

def createCpg(inputName: String)(implicit defaultConfig: Config): Try[Cpg]

Create a CPG in memory for file at inputName with default configuration.

Create a CPG in memory for file at inputName with default configuration.

Attributes

Inherited from:
X2CpgFrontend
def createCpg(inputName: String, outputName: Option[String])(implicit defaultConfig: Config): Try[Cpg]

Create a CPG for code at inputName (a single location) with default frontend configuration. If outputName exists, it is the file name of the resulting CPG. Otherwise, the CPG is held in memory.

Create a CPG for code at inputName (a single location) with default frontend configuration. If outputName exists, it is the file name of the resulting CPG. Otherwise, the CPG is held in memory.

Attributes

Inherited from:
X2CpgFrontend
def createCpgWithOverlays(inputName: String)(implicit defaultConfig: Config): Try[Cpg]

Create a CPG for code at inputPath and apply default overlays.

Create a CPG for code at inputPath and apply default overlays.

Attributes

Inherited from:
X2CpgFrontend
def createCpgWithOverlays(config: Config): Try[Cpg]

Create a CPG with default overlays according to given configuration

Create a CPG with default overlays according to given configuration

Attributes

Inherited from:
X2CpgFrontend
protected def dependenciesFromService(service: Service, importNames: Seq[String]): Seq[String]

Attributes

Inherited from:
UsesService
protected def reachableServiceMaybe(serviceUrl: String): Option[Service]

Attributes

Inherited from:
UsesService
def run(config: Config): Unit

Create CPG according to given configuration, printing errors to the console if they occur. The CPG is closed and not returned.

Create CPG according to given configuration, printing errors to the console if they occur. The CPG is closed and not returned.

Attributes

Inherited from:
X2CpgFrontend

Concrete fields

val parsingError: String