RESOLVED FIXED 225124
Move ExceptionExpectation into its own .h file.
https://bugs.webkit.org/show_bug.cgi?id=225124
Summary Move ExceptionExpectation into its own .h file.
Mark Lam
Reported 2021-04-27 14:43:39 PDT
Patch coming.
Attachments
proposed patch. (7.21 KB, patch)
2021-04-27 14:46 PDT, Mark Lam
ews-feeder: commit-queue-
proposed patch. (7.20 KB, patch)
2021-04-27 15:05 PDT, Mark Lam
no flags
proposed patch. (7.63 KB, patch)
2021-04-27 15:18 PDT, Mark Lam
no flags
proposed patch. (8.41 KB, patch)
2021-04-27 15:24 PDT, Mark Lam
rmorisset: review+
Mark Lam
Comment 1 2021-04-27 14:46:23 PDT
Created attachment 427198 [details] proposed patch.
Mark Lam
Comment 2 2021-04-27 15:05:29 PDT
Created attachment 427200 [details] proposed patch.
Mark Lam
Comment 3 2021-04-27 15:18:14 PDT
Created attachment 427201 [details] proposed patch.
Mark Lam
Comment 4 2021-04-27 15:24:15 PDT
Created attachment 427202 [details] proposed patch.
Robin Morisset
Comment 5 2021-04-27 15:41:35 PDT
Comment on attachment 427202 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=427202&action=review > Source/JavaScriptCore/ChangeLog:3 > + Move ExceptionExpectation into its own .h file. What is the goal of this? > Source/JavaScriptCore/runtime/ExceptionHelpers.h:-39 > -enum class ExceptionExpectation { Should we not #include "ExceptionExpectation" if it is used in this file?
Mark Lam
Comment 6 2021-04-27 15:43:19 PDT
Comment on attachment 427202 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=427202&action=review >> Source/JavaScriptCore/ChangeLog:3 >> + Move ExceptionExpectation into its own .h file. > > What is the goal of this? It belongs in its own file instead of some other header file. I was previously lazy and just stashed it in ExceptionHelpers.h. Just making it right now. >> Source/JavaScriptCore/runtime/ExceptionHelpers.h:-39 >> -enum class ExceptionExpectation { > > Should we not #include "ExceptionExpectation" if it is used in this file? It's not used in this file.
Robin Morisset
Comment 7 2021-04-27 15:44:19 PDT
Comment on attachment 427202 [details] proposed patch. r=me
Mark Lam
Comment 8 2021-04-27 15:50:13 PDT
Oops, my uploaded patch was missing this bit: @@ -463,9 +463,10 @@ bool JSGenericTypedArrayView<Adaptor>::g return false; JSValue value; - if constexpr (Adaptor::canConvertToJSQuickly) + if constexpr (Adaptor::canConvertToJSQuickly) { + UNUSED_VARIABLE(scope); value = thisObject->getIndexQuickly(propertyName); - else { + } else { auto nativeValue = thisObject->getIndexQuicklyAsNativeValue(propertyName); value = Adaptor::toJSValue(globalObject, nativeValue); RETURN_IF_EXCEPTION(scope, false); Talked to Robin offline, and he ok'ed me to include it for landing.
Mark Lam
Comment 9 2021-04-27 15:53:36 PDT
Thanks for the review. Landed in r276676: <http://trac.webkit.org/r276676>.
Radar WebKit Bug Importer
Comment 10 2021-04-27 15:54:19 PDT
Note You need to log in before you can comment on or make changes to this bug.