code: 9ferno

ref: 410c1337e07a9f1d521360a160903fe32b4e0d4a
dir: /appl/ebook/cssparser.m/

View raw version
CSSparser: module {
	PATH: con "/dis/ebook/cssparser.dis";
	Decl: adt {
		name:		string;
		important:	int;
		val:			string;
	};
	init:		fn();
	parse:	fn(s: string): list of (string, list of Decl);
	parsedecl:	fn(s: string): list of Decl;
};