Exclude coverage check in exception conditional

This commit is contained in:
kpdecker
2015-12-12 16:14:17 -06:00
parent 2ea6119a83
commit 326734b0f3
+1
View File
@@ -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 {