Exclude coverage check in exception conditional

This commit is contained in:
kpdecker
2015-12-12 16:14:17 -06:00
committed by Lon Ingram
parent 20c965cd65
commit 32d6363841
+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 {