diff options
-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 { |