WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
163198
Refactor binding generated casted-this checks for methods
https://bugs.webkit.org/show_bug.cgi?id=163198
Summary
Refactor binding generated casted-this checks for methods
youenn fablet
Reported
2016-10-10 00:17:25 PDT
We should align methods with attribute getters/setters
Attachments
Patch
(258.26 KB, patch)
2016-10-10 00:29 PDT
,
youenn fablet
buildbot
: commit-queue-
Details
Formatted Diff
Diff
Archive of layout-test-results from ews102 for mac-yosemite
(1.21 MB, application/zip)
2016-10-10 01:47 PDT
,
Build Bot
no flags
Details
Patch
(262.13 KB, patch)
2016-10-11 01:09 PDT
,
youenn fablet
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from ews104 for mac-yosemite-wk2
(1.03 MB, application/zip)
2016-10-11 02:17 PDT
,
Build Bot
no flags
Details
Fixing custom promise functions
(262.49 KB, patch)
2016-10-11 02:29 PDT
,
youenn fablet
no flags
Details
Formatted Diff
Diff
Patch for landing
(272.76 KB, patch)
2016-10-11 22:49 PDT
,
youenn fablet
no flags
Details
Formatted Diff
Diff
Patch for landing
(272.78 KB, patch)
2016-10-11 23:24 PDT
,
youenn fablet
no flags
Details
Formatted Diff
Diff
Show Obsolete
(6)
View All
Add attachment
proposed patch, testcase, etc.
youenn fablet
Comment 1
2016-10-10 00:29:53 PDT
Created
attachment 291069
[details]
Patch
Build Bot
Comment 2
2016-10-10 01:47:15 PDT
Comment on
attachment 291069
[details]
Patch
Attachment 291069
[details]
did not pass mac-ews (mac): Output:
http://webkit-queues.webkit.org/results/2254231
New failing tests: js/promises-tests/promises-tests-2-3-2.html fast/dom/Window/window-postmessage-args.html js/promises-tests/promises-tests-2-2-7.html js/promises-tests/promises-tests-2-1-3.html js/dom/toString-and-valueOf-override.html js/promises-tests/promises-tests-2-2-3.html http/tests/security/listener/xss-window-onclick-addEventListener.html http/tests/security/listener/xss-window-onclick-shortcut.html js/promises-tests/promises-tests-2-2-6.html js/promises-tests/promises-tests-2-2-4.html fast/dom/Window/addEventListener-implicit-this.html js/promises-tests/promises-tests-2-2-2.html http/tests/security/listener/xss-JSTargetNode-onclick-addEventListener.html js/promises-tests/promises-tests-2-2-5.html fast/workers/worker-call.html http/tests/security/listener/xss-JSTargetNode-onclick-shortcut.html fetch/fetch-error-messages.html http/tests/security/listener/xss-XMLHttpRequest-shortcut.html js/promises-tests/promises-tests-2-3-4.html js/promises-tests/promises-tests-2-3-1.html js/promises-tests/promises-tests-2-2-1.html http/tests/security/listener/xss-XMLHttpRequest-addEventListener.html
Build Bot
Comment 3
2016-10-10 01:47:18 PDT
Created
attachment 291080
[details]
Archive of layout-test-results from ews102 for mac-yosemite The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews102 Port: mac-yosemite Platform: Mac OS X 10.10.5
youenn fablet
Comment 4
2016-10-11 01:09:44 PDT
Created
attachment 291241
[details]
Patch
Build Bot
Comment 5
2016-10-11 02:17:19 PDT
Comment on
attachment 291241
[details]
Patch
Attachment 291241
[details]
did not pass mac-wk2-ews (mac-wk2): Output:
http://webkit-queues.webkit.org/results/2261114
New failing tests: fast/mediastream/MediaDevices-getUserMedia.html
Build Bot
Comment 6
2016-10-11 02:17:21 PDT
Created
attachment 291242
[details]
Archive of layout-test-results from ews104 for mac-yosemite-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews104 Port: mac-yosemite-wk2 Platform: Mac OS X 10.10.5
youenn fablet
Comment 7
2016-10-11 02:29:49 PDT
Created
attachment 291244
[details]
Fixing custom promise functions
Darin Adler
Comment 8
2016-10-11 09:00:28 PDT
Comment on
attachment 291244
[details]
Fixing custom promise functions View in context:
https://bugs.webkit.org/attachment.cgi?id=291244&action=review
OK. I’d rather see this done without introducing the term "method".
> Source/WebCore/ChangeLog:11 > + Introducing BindingCaller::callMethod and callPromiseMethod to encapsulate casted-this checks for methods. > + This is supported for all methods except seralizer and iterators methods.
I’m not sure why we are calling these "methods". WebIDL calls one of these an "operation", and C++ calls it a "function" or "member function". Adding in the term "method" brings yet another set of terminology in.
> Source/WebCore/bindings/js/JSEventTargetCustom.h:54 > +template<> > +struct BindingCaller<JSEventTarget> {
I like to put these all on one line; I know I haven’t commented on this much before, but generally I don’t like how these look spread across two lines both with the same indentation level.
youenn fablet
Comment 9
2016-10-11 22:47:25 PDT
Thanks for the review.
> View in context: >
https://bugs.webkit.org/attachment.cgi?id=291244&action=review
> > OK. I’d rather see this done without introducing the term "method". > > > Source/WebCore/ChangeLog:11 > > + Introducing BindingCaller::callMethod and callPromiseMethod to encapsulate casted-this checks for methods. > > + This is supported for all methods except seralizer and iterators methods. > > I’m not sure why we are calling these "methods". WebIDL calls one of these > an "operation", and C++ calls it a "function" or "member function". Adding > in the term "method" brings yet another set of terminology in.
Method is more used in binding generator than Operation currently. I will switch to Operation in this patch.
> > Source/WebCore/bindings/js/JSEventTargetCustom.h:54 > > +template<> > > +struct BindingCaller<JSEventTarget> { > > I like to put these all on one line; I know I haven’t commented on this much > before, but generally I don’t like how these look spread across two lines > both with the same indentation level.
I don't have strong feelings. Are you suggesting this style for fully specialized ones?
youenn fablet
Comment 10
2016-10-11 22:49:19 PDT
Created
attachment 291334
[details]
Patch for landing
WebKit Commit Bot
Comment 11
2016-10-11 23:13:55 PDT
Comment on
attachment 291334
[details]
Patch for landing Rejecting
attachment 291334
[details]
from commit-queue. Failed to run "['/Volumes/Data/EWS/WebKit/Tools/Scripts/webkit-patch', '--status-host=webkit-queues.webkit.org', '--bot-id=webkit-cq-01', 'build', '--no-clean', '--no-update', '--build-style=release', '--port=mac']" exit_code: 2 cwd: /Volumes/Data/EWS/WebKit Last 500 characters of output: ease/DerivedSources/WebCore/JSFontFaceSet.cpp -o /Volumes/Data/EWS/WebKit/WebKitBuild/WebCore.build/Release/WebCore.build/Objects-normal/x86_64/JSFontFaceSet.o ** BUILD FAILED ** The following build commands failed: CompileC /Volumes/Data/EWS/WebKit/WebKitBuild/WebCore.build/Release/WebCore.build/Objects-normal/x86_64/JSEventTarget.o /Volumes/Data/EWS/WebKit/WebKitBuild/Release/DerivedSources/WebCore/JSEventTarget.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (1 failure) Full output:
http://webkit-queues.webkit.org/results/2267869
youenn fablet
Comment 12
2016-10-11 23:24:05 PDT
Created
attachment 291341
[details]
Patch for landing
WebKit Commit Bot
Comment 13
2016-10-11 23:59:41 PDT
Comment on
attachment 291341
[details]
Patch for landing Clearing flags on attachment: 291341 Committed
r207192
: <
http://trac.webkit.org/changeset/207192
>
WebKit Commit Bot
Comment 14
2016-10-11 23:59:46 PDT
All reviewed patches have been landed. Closing bug.
Darin Adler
Comment 15
2016-10-12 09:19:51 PDT
(In reply to
comment #9
)
> > > Source/WebCore/bindings/js/JSEventTargetCustom.h:54 > > > +template<> > > > +struct BindingCaller<JSEventTarget> { > > > > I like to put these all on one line; I know I haven’t commented on this much > > before, but generally I don’t like how these look spread across two lines > > both with the same indentation level. > > I don't have strong feelings. > Are you suggesting this style for fully specialized ones?
I like this style for all cases, but I am not sure other agree.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug