Bump to v0.3.0.

Former-commit-id: 2b713b3d926e3dbba80eab6e1e14d080f169bf39
This commit is contained in:
John-David Dalton
2012-06-06 00:52:57 -04:00
parent 7c1c5e70ca
commit 5b6ea7afb2
7 changed files with 132 additions and 127 deletions

View File

@@ -385,7 +385,7 @@
return;
}
if (filterType == 'exclude') {
// remove the specified functions and their dependants
// remove methods that are named in `filterMethods` and their dependants
filterMethods.forEach(function(funcName) {
getDependants(funcName).concat(funcName).forEach(function(otherName) {
source = removeFunction(source, otherName);
@@ -399,7 +399,7 @@
return result;
}, []));
// remove methods not included in `filterMethods`
// remove methods that aren't named in `filterMethods`
lodash.each(dependencyMap, function(dependencies, otherName) {
if (filterMethods.indexOf(otherName) < 0) {
source = removeFunction(source, otherName);