module lang::manifest::IO
rascal-0.40.16
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)