All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.joern.joerncli.console.ReplBridge.scala Maven / Gradle / Ivy

There is a newer version: 4.0.78
Show newest version
package io.joern.joerncli.console

import io.joern.console.BridgeBase
import java.io.PrintStream

object ReplBridge extends BridgeBase {

  override val applicationName = "joern"

  def main(args: Array[String]): Unit = {
    run(parseConfig(args))
  }

  /** Code that is executed when starting the shell
    */
  override def predefLines =
    Predefined.forInteractiveShell

  override def greeting = JoernConsole.banner()

  override def promptStr: String = "joern"

  override def onExitCode: String = "workspace.projects.foreach(_.close)"

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy