tc39 / proposal-error-stacks

ECMAScript Proposal, specs, and reference implementation for Error.prototype.stack / System.getStack
https://tc39.github.io/proposal-error-stacks/
MIT License
170 stars 13 forks source link

typo in 8.1 IsStackFrame(frame) #16

Closed yungcheng closed 7 years ago

yungcheng commented 7 years ago

Step 6. If ! Type(frame.[[Source]]) is not String, and ! IsStackFrame(source) is not true, return false. I think you mean IsStackFrame(frame.[[Source]]) because source isn't defined in that algorithm.