/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk

« back to all changes in this revision

Viewing changes to parse/phobos-dom.d

  • Committer: Suren A. Chilingaryan
  • Date: 2009-10-08 03:17:59 UTC
  • Revision ID: csa@dside.dyndns.org-20091008031759-u5ys779huye7feni
LibXML Pull Parser, FAXPP Parser, Mono security benchmark, multiple fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
extern(C) void parseXML(TestData *td, ulong iter) {
16
16
    string str = std.conv.to!string(td.xml);
 
17
/*
 
18
    This is extremelly slow, and fails in many cases,
 
19
    lets see how non-validating parser is working
17
20
    check(str);
 
21
*/
18
22
    Document doc = new Document(str);
19
23
//    writeln(doc);
20
24
}