Closed
Bug 1147005
Opened 10 years ago
Closed 10 years ago
Change JSAddPropertyOp signature
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla40
Tracking | Status | |
---|---|---|
firefox40 | --- | fixed |
People
(Reporter: evilpies, Assigned: evilpies)
References
Details
Attachments
(1 file)
22.05 KB,
patch
|
jorendorff
:
review+
jorendorff
:
review+
|
Details | Diff | Splinter Review |
I want to split setProperty and addProperty, so might as well fix addProperty first.
Attachment #8582571 -
Flags: review?(peterv)
Attachment #8582571 -
Flags: review?(jorendorff)
Attachment #8582571 -
Attachment description: Remove mutable value parameter from JSPropertyOP → Remove mutable value parameter from JSAddPropertyOp
Comment 2•10 years ago
|
||
Comment on attachment 8582571 [details] [diff] [review]
Remove mutable value parameter from JSAddPropertyOp
Review of attachment 8582571 [details] [diff] [review]:
-----------------------------------------------------------------
::: js/xpconnect/idl/nsIXPCScriptable.idl
@@ +78,5 @@
> in JSObjectPtr globalObj, out JSObjectPtr parentObj);
>
> boolean addProperty(in nsIXPConnectWrappedNative wrapper,
> in JSContextPtr cx, in JSObjectPtr obj, in jsid id,
> + in jsval val);
Need to change the IID of this interface (mach update-uuids).
Attachment #8582571 -
Flags: review?(peterv) → review+
Comment 3•10 years ago
|
||
Comment on attachment 8582571 [details] [diff] [review]
Remove mutable value parameter from JSAddPropertyOp
Review of attachment 8582571 [details] [diff] [review]:
-----------------------------------------------------------------
Nice. Scripted WANT_ADDPROPERTY users are a wildcard; maybe Peter knows more about them? Anyway, it's worth a shot.
::: dom/base/nsDOMClassInfo.cpp
@@ +911,5 @@
> }
>
> NS_IMETHODIMP
> nsDOMClassInfo::AddProperty(nsIXPConnectWrappedNative *wrapper, JSContext *cx,
> + JSObject *obj, jsid id, JS::Handle<JS::Value> val,
JS::HandleValue is in the public API and is used everywhere, right?
::: js/xpconnect/idl/nsIXPCScriptable.idl
@@ +78,5 @@
> in JSObjectPtr globalObj, out JSObjectPtr parentObj);
>
> boolean addProperty(in nsIXPConnectWrappedNative wrapper,
> in JSContextPtr cx, in JSObjectPtr obj, in jsid id,
> + in jsval val);
When you change an IDL file, you have to change this interface's UUID and the UUIDs of all other interfaces that mention it. 'mach update-uuids' can do this for you, I think.
Attachment #8582571 -
Flags: review?(peterv)
Attachment #8582571 -
Flags: review?(jorendorff)
Attachment #8582571 -
Flags: review+
Comment 4•10 years ago
|
||
Comment on attachment 8582571 [details] [diff] [review]
Remove mutable value parameter from JSAddPropertyOp
Restoring peterv's review which I accidentally clobbered.
Attachment #8582571 -
Flags: review?(peterv) → review+
Gecko uses JS::Handle<JS::Value> and Peter already made me update the IDL.
https://treeherder.mozilla.org/#/jobs?repo=try&revision=bfe3954c2784
https://hg.mozilla.org/integration/mozilla-inbound/rev/d72144153749
Comment 6•10 years ago
|
||
Sorry, sucks to be you. Backed out in https://hg.mozilla.org/integration/mozilla-inbound/rev/055c19334b2e to get a clean backout of another patch to finally get a clean backout of bustage from Friday afternoon.
Comment 8•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
status-firefox40:
--- → fixed
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla40
You need to log in
before you can comment on or make changes to this bug.
Description
•