8 lines
182 B
Haxe
8 lines
182 B
Haxe
|
package flash.xml;
|
||
|
|
||
|
extern final class XMLParser {
|
||
|
function new() : Void;
|
||
|
function getNext(tag : XMLTag) : Int;
|
||
|
function startParse(source : String, ignoreWhite : Bool) : Void;
|
||
|
}
|