RESOLVED FIXED 136691
Web Inspector: Eliminate typeof "undefined" checks
https://bugs.webkit.org/show_bug.cgi?id=136691
Summary Web Inspector: Eliminate typeof "undefined" checks
Joseph Pecoraro
Reported 2014-09-09 18:29:28 PDT
A long time ago, `undefined` could be re-assigned. Which could cause craziness comparing to undefined. That has not been the case for a while. We can just convert: typeof foo === "undefined" To: foo === undefined
Attachments
[PATCH] Proposed Fix (4.70 KB, patch)
2014-09-09 18:30 PDT, Joseph Pecoraro
no flags
Joseph Pecoraro
Comment 1 2014-09-09 18:30:10 PDT
Created attachment 237876 [details] [PATCH] Proposed Fix
WebKit Commit Bot
Comment 2 2014-09-10 15:41:29 PDT
Comment on attachment 237876 [details] [PATCH] Proposed Fix Clearing flags on attachment: 237876 Committed r173494: <http://trac.webkit.org/changeset/173494>
WebKit Commit Bot
Comment 3 2014-09-10 15:41:31 PDT
All reviewed patches have been landed. Closing bug.
Brian Burg
Comment 4 2014-09-10 16:10:26 PDT
Comment on attachment 237876 [details] [PATCH] Proposed Fix Was this supposed to include a change to .eslintrc?
Note You need to log in before you can comment on or make changes to this bug.