summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2015-12-12 16:14:17 -0600
committerkpdecker <kpdecker@gmail.com>2015-12-12 16:14:17 -0600
commit326734b0f3ab9e7b9431579d449d344919bb6869 (patch)
tree04d216ec62a8468606b8e74b20fcb03f8311e4df
parent2ea6119a83e6c59ce3b208f95fee604a1648670b (diff)
downloadhandlebars.js-326734b0f3ab9e7b9431579d449d344919bb6869.zip
handlebars.js-326734b0f3ab9e7b9431579d449d344919bb6869.tar.gz
handlebars.js-326734b0f3ab9e7b9431579d449d344919bb6869.tar.bz2
Exclude coverage check in exception conditional
-rw-r--r--lib/handlebars/exception.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/handlebars/exception.js b/lib/handlebars/exception.js
index 24734d4..af675d9 100644
--- a/lib/handlebars/exception.js
+++ b/lib/handlebars/exception.js
@@ -29,6 +29,7 @@ function Exception(message, node) {
this.lineNumber = line;
// Work around issue under safari where we can't directly set the column value
+ /* istanbul ignore next */
if (Object.defineProperty) {
Object.defineProperty(this, 'column', {value: column});
} else {