diff options
author | kpdecker <kpdecker@gmail.com> | 2015-12-12 16:14:17 -0600 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2015-12-12 16:14:17 -0600 |
commit | 326734b0f3ab9e7b9431579d449d344919bb6869 (patch) | |
tree | 04d216ec62a8468606b8e74b20fcb03f8311e4df | |
parent | 2ea6119a83e6c59ce3b208f95fee604a1648670b (diff) | |
download | handlebars.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.js | 1 |
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 { |