diff options
Diffstat (limited to 'lib/handlebars/compiler/javascript-compiler.js')
-rw-r--r-- | lib/handlebars/compiler/javascript-compiler.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/handlebars/compiler/javascript-compiler.js b/lib/handlebars/compiler/javascript-compiler.js index 769179b..4c59aae 100644 --- a/lib/handlebars/compiler/javascript-compiler.js +++ b/lib/handlebars/compiler/javascript-compiler.js @@ -606,11 +606,10 @@ JavaScriptCompiler.prototype = { // [assignToHash] // - // On stack, before: value, hash, ... - // On stack, after: hash, ... + // On stack, before: value, ..., hash, ... + // On stack, after: ..., hash, ... // - // Pops a value and hash off the stack, assigns `hash[key] = value` - // and pushes the hash back onto the stack. + // Pops a value off the stack and assigns it to the current hash assignToHash: function(key) { var value = this.popStack(), context, |