Currently, to retrieve the Arguments of a function on the call stack, we assume that the call stack contains an explicit entry for that function. This won't be the case if the function is inlined. Call stack walking for the purpose of JS-visible reflection should be able to rematerialize call frames of inlined functions, and arguments retrieval should be hardened for this possibility.
Created attachment 110920 [details] the patch
Attachment 110920 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/bytecode/CodeOrigin.h:26: #ifndef header guard has wrong style, please use: CodeOrigin_h [build/header_guard] [5] Total errors found: 1 in 17 files If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 110920 [details] the patch Fix the minor style error
Landed in r97512.