fix runtime generator breaking the helper inclusion loop - fixes #429

This commit is contained in:
Sebastian McKenzie
2015-01-09 19:31:30 +11:00
parent 89148e6029
commit fb0fcc7138
2 changed files with 6 additions and 1 deletions

View File

@@ -11,6 +11,11 @@
_Note: Gaps between patch versions are faulty/broken releases._
## 2.9.1
* **Internal**
* Fix runtime generator breaking the helper inclusion loop.
## 2.9.0
* **Internal**

View File

@@ -20,7 +20,7 @@ module.exports = function (namespace) {
_.each(File.helpers, function (name) {
if (_.contains(File.excludeHelpersFromRuntime, name)) {
return false;
return;
}
var key = t.identifier(t.toIdentifier(name));