module lang::manifest::IO
rascal-0.34.0
Jar Manifest files are a kind of property files typically stored inside Jar files. They contain meta information about the other files stored in the jar file.
Usage
import lang::manifest::IO;
Dependencies
import Type;
import String;
function readManifest
reads a manifest file and returns its main attributes as a map
map[str key, str val] readManifest(loc input)
function readManifest
reads a manifest and converts the resulting map to keyword parameters for the given type
(&T <: node) readManifest(type[&T<:node] t, loc input)