diff options
author | kpdecker <kpdecker@gmail.com> | 2015-12-12 16:14:17 -0600 |
---|---|---|
committer | Lon Ingram <lawnsea@gmail.com> | 2016-11-11 12:01:16 -0600 |
commit | 32d6363841740ba869c3b2e3d15bb1a2eaaf0c1f (patch) | |
tree | 6ff80c190a61ac398206d87cf2edba0fcf6d0ea4 | |
parent | 20c965cd65d646948d76522e4f20d38cd39762a3 (diff) | |
download | handlebars.js-32d6363841740ba869c3b2e3d15bb1a2eaaf0c1f.zip handlebars.js-32d6363841740ba869c3b2e3d15bb1a2eaaf0c1f.tar.gz handlebars.js-32d6363841740ba869c3b2e3d15bb1a2eaaf0c1f.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 { |