Package org.dtk.analysis.script.dependency

Examples of org.dtk.analysis.script.dependency.ScriptDependencyParser


   *
   * @param scriptContents - JavaScript source text to analyse
   * @return List of discovered module dependencies
   */
  protected List<String> analyseModuleDependencies(String scriptContents) {
    ScriptDependencyParser scriptParser = getScriptParser(scriptContents);    
    return scriptParser.getModuleDependencies();    
  }
View Full Code Here

TOP

Related Classes of org.dtk.analysis.script.dependency.ScriptDependencyParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.