A few more lingering bugs:

* add helperMissing.not to the specs
* add Handlebars.Utils.isEmpty
* add runtime handling for inverse sections
* fix __get__ to pass an IdNode to evaluate
* handle case in wrapProgram where context is undefined
This commit is contained in:
wycats
2010-12-03 01:39:00 -05:00
parent c89ecf80a5
commit 9a6f77af56
3 changed files with 53 additions and 1 deletions
+4
View File
@@ -15,6 +15,10 @@ var helperMissing = function(context, fn) {
} else {
return fn(context);
}
};
helperMissing.not = function(context, fn) {
return fn(context);
}
var shouldCompileTo = function(string, hash, expected, message) {