summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2015-04-07 23:37:46 -0500
committerkpdecker <kpdecker@gmail.com>2015-04-07 23:37:46 -0500
commitc699d0b82f5f006bbd11d2dfcc3b7e563ff46959 (patch)
treead93ccab3098663d9d40430fdad5940ccfc6d210
parent2d149e779764cb373be0585c5e493da405062be6 (diff)
downloadhandlebars.js-c699d0b82f5f006bbd11d2dfcc3b7e563ff46959.zip
handlebars.js-c699d0b82f5f006bbd11d2dfcc3b7e563ff46959.tar.gz
handlebars.js-c699d0b82f5f006bbd11d2dfcc3b7e563ff46959.tar.bz2
Remove vestigial code
-rw-r--r--lib/handlebars/compiler/visitor.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/handlebars/compiler/visitor.js b/lib/handlebars/compiler/visitor.js
index 6e4168e..b45b268 100644
--- a/lib/handlebars/compiler/visitor.js
+++ b/lib/handlebars/compiler/visitor.js
@@ -99,11 +99,6 @@ Visitor.prototype = {
this.acceptArray(sexpr.params);
this.acceptKey(sexpr, 'hash');
},
- PartialExpression: function(partial) {
- this.acceptRequired(partial, 'name');
- this.acceptArray(partial.params);
- this.acceptKey(partial, 'hash');
- },
PathExpression: function(/* path */) {},