code: purgatorio

ref: b7af62b250e5dff30320a181ca9d53ab5a7c276d
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;
};