| author | hamidouk |
| Tue, 31 Jan 2012 15:32:35 +0100 | |
| branch | popcorn-port |
| changeset 750 | a1a3d09de1f4 |
| parent 520 | fe008e95a716 |
| permissions | -rw-r--r-- |
LOG.inform("XMLDOC.symbolize loaded"); /** * Convert the source file to a set of symbols */ XMLDOC.symbolize = function(srcFile, src) { LOG.inform("Symbolizing file '" + srcFile + "'"); // XML files already have a defined structure, so we don't need to // do anything but parse them. The DOM reader can create a symbol // table from the parsed XML. var dr = new XMLDOC.DomReader(XMLDOC.Parser.parse(src)); return dr.getSymbols(srcFile); };