thirdparty/jsdoctoolkit/app/handlers/XMLDOC/XMLDoc.js
author Mario Ferraro <fadinlight@gmail.com>
Tue, 27 Oct 2009 20:04:51 +0000
changeset 3065 c7c5212ba840
parent 3041 c8f47f0b6697
permissions -rw-r--r--
Script to run JSLint over JS files to check JS code quality. This script will run JSLint over all files in app/soc/content/js directory and subdirectories to check JS code guidelines compliance.

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);

};