summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler/javascript-compiler.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/handlebars/compiler/javascript-compiler.js')
-rw-r--r--lib/handlebars/compiler/javascript-compiler.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/handlebars/compiler/javascript-compiler.js b/lib/handlebars/compiler/javascript-compiler.js
index 75e50d2..8830661 100644
--- a/lib/handlebars/compiler/javascript-compiler.js
+++ b/lib/handlebars/compiler/javascript-compiler.js
@@ -425,7 +425,6 @@ JavaScriptCompiler.prototype = {
//
// Push the data lookup operator
lookupData: function(depth, parts) {
- /*jshint -W083 */
if (!depth) {
this.pushStackLiteral('data');
} else {
@@ -436,7 +435,6 @@ JavaScriptCompiler.prototype = {
},
resolvePath: function(type, parts, i, falsy) {
- /*jshint -W083 */
if (this.options.strict || this.options.assumeObjects) {
this.push(strictLookup(this.options.strict, this, parts, type));
return;