Vfs
Engine plugin providing configurable VFS support for polyglot contexts. Both embedded and host VFS implementations are supported and can be toggled using the VfsConfig DSL:
val engine = PolyglotEngine {
install(Vfs) {
// this is the default, if set to true, registered bundles are ignored
writable = true
// add bundles from resources
include(MyApp::class.java.getResource("myBundle.tar.gz"))
}
}
Content copied to clipboard