WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED DUPLICATE of
bug 17018
13621
Decompilation of object literal getter incorrectly includes quotes around name
https://bugs.webkit.org/show_bug.cgi?id=13621
Summary
Decompilation of object literal getter incorrectly includes quotes around name
Jesse Ruderman
Reported
2007-05-08 00:23:35 PDT
> (function() { return { get x() { } } })
function () { return { get "x"() { } }; } The decompilation doesn't compile, so I'm pretty sure it's wrong ;) Found with jsfunfuzz in a nightly.
Attachments
Add attachment
proposed patch, testcase, etc.
Eric Seidel (no email)
Comment 1
2007-05-09 16:59:51 PDT
if I'm understanding this correctly, this is trying to get the property value of the name returned by the function x(). I'm not even sure we support that currently. A PropertyNode holds a PropertyNameNode and seems to expect that it's an identifier. I'm guessing this will require more than just serializer changes.
Eric Seidel (no email)
Comment 2
2007-05-09 19:24:03 PDT
I was confused earlier. The problem currently lies that the PropertyNode::toStream knows if it's streaming a getter/setter, but the PropertyNameNode does not. The propertyNameNode always adds " " around the name. Maybe the " " addition should just be pulled out into PropertyNode::streamTo
Jesse Ruderman
Comment 3
2008-02-11 17:04:44 PST
*** This bug has been marked as a duplicate of
17018
***
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