You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Peter (JIRA)" <ji...@apache.org> on 2013/06/05 03:19:20 UTC

[jira] [Created] (CB-3606) gv-requires.js generates incorrect module dependencies

Peter created CB-3606:
-------------------------

             Summary: gv-requires.js generates incorrect module dependencies
                 Key: CB-3606
                 URL: https://issues.apache.org/jira/browse/CB-3606
             Project: Apache Cordova
          Issue Type: Bug
          Components: Android
    Affects Versions: 2.7.0
            Reporter: Peter
            Assignee: Joe Bowser
            Priority: Minor


The regular expression logic for node detection in the GraphViz module dependency generation tool (CB-340) is as follows:

* It splits the JavaScript into modules based on "define" 
* It then looks for "require" within those split fragments to determine dependencies of that module.

The problem is there are some files which make up the cordova.android.js which do not have this assumed "define" (eg bootstrap*.js) format. The effect is any requires in such files will be wrongly attributed to the last module which did have a define.

For example, the requires of bootstrap*.js are wrongly attributed as dependencies of the prior define("cordova/utils"...

The resulting graph which shows some dependencies which do not actually exist (eg "cordova/utils" -> 'cordova/channel')

https://www.dropbox.com/s/96i48zhujabed6m/cordova-js-orig.svg

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira