Skip to content

Commit c155969

Browse files
committed
Fixed this.isEval to this.getIsEval
1 parent 1503a03 commit c155969

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stackframe.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
var lineNumber = this.getLineNumber() || '';
7373
var columnNumber = this.getColumnNumber() || '';
7474
var functionName = this.getFunctionName() || '';
75-
if (this.isEval()) {
75+
if (this.getIsEval()) {
7676
if (fileName) {
7777
return '[eval] (' + fileName + ':' + lineNumber + ':' + columnNumber + ')';
7878
}

0 commit comments

Comments
 (0)