|
|
@@ -9,7 +9,7 @@
|
|
|
* @constructor
|
|
|
*/
|
|
|
var DepsTracker = module.exports = function DepsTracker() {
|
|
|
- /* fields is a set of strings */
|
|
|
+ // fields is a set of strings
|
|
|
this.fields = {};
|
|
|
this.needWholeDocument = false;
|
|
|
this.needTextScore = false;
|
|
|
@@ -19,7 +19,6 @@ var ParsedDeps = require("./ParsedDeps");
|
|
|
|
|
|
/**
|
|
|
* Returns a projection object covering the dependencies tracked by this class.
|
|
|
- *
|
|
|
* @method toProjection
|
|
|
* @return {Object} projection of caller's dependencies
|
|
|
*/
|
|
|
@@ -74,7 +73,6 @@ proto.toProjection = function toProjection() {
|
|
|
|
|
|
/**
|
|
|
* Takes a depsTracker and builds a simple recursive lookup table out of it.
|
|
|
- *
|
|
|
* @method toParsedDeps
|
|
|
* @return {ParsedDeps}
|
|
|
*/
|