Module Xml_light.Xml_lexer
type error = | EUnterminatedString| EIdentExpected| ECloseExpected| ENodeExpected| EAttributeNameExpected| EAttributeValueExpected| EUnterminatedEntity
type dtd_error = | EInvalidDTDDecl| EInvalidDTDTag| EDTDItemExpected| EInvalidDTDElement| EInvalidDTDAttribute
type dtd_decl = | DTDFile of string| DTDData of Dtd0.dtd
type token = | Tag of string * (string * string) list * bool| PCData of string| Endtag of string| DocType of string * dtd_decl| Eof
type pos = int * int * int * intval restore : pos -> unit