/*\ title: $:/core/dependencies.js type: application/javascript module-type: global Represents the dependencies of a tiddler or a parser node as these fields: tiddlers: A hashmap of explicitly tiddler titles, with the value `false` if the dependency is skinny, and `true` if it is fat dependentAll: True if there is an implicit skinny dependency on all available tiddlers dependentOnContextTiddler: True if the node has a fat dependency on the current context tiddler \*/ (function(){ /*jslint node: true */ "use strict"; var Dependencies = function(skinnyTiddlers,fatTiddlers,dependentAll) { var t,title; this.tiddlers = {}; this.dependentAll = dependentAll; if(skinnyTiddlers) { for(t=0; t