<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [JSC] correctly handle indexed properties in Object.getOwnPropertyDescriptors"
   href="https://bugs.webkit.org/show_bug.cgi?id=155563#c8">Comment # 8</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [JSC] correctly handle indexed properties in Object.getOwnPropertyDescriptors"
   href="https://bugs.webkit.org/show_bug.cgi?id=155563">bug 155563</a>
              from <span class="vcard"><a class="email" href="mailto:caitp&#64;igalia.com" title="Caitlin Potter (:caitp) &lt;caitp&#64;igalia.com&gt;"> <span class="fn">Caitlin Potter (:caitp)</span></a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=274287&amp;action=diff" name="attach_274287" title="Patch">attachment 274287</a> <a href="attachment.cgi?id=274287&amp;action=edit" title="Patch">[details]</a></span>
Patch

View in context: <a href="https://bugs.webkit.org/attachment.cgi?id=274287&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=274287&amp;action=review</a>

<span class="quote">&gt;&gt; Source/JavaScriptCore/runtime/ObjectConstructor.cpp:253
&gt;&gt; +        JSObject::put(descriptors, exec, propertyName, fromDescriptor, slot);
&gt; 
&gt; You need an exception check here. 
&gt; An exception check is also needed above
&gt; after constructEmptyObject(). I suggest
&gt; caching the VM in a local variable and checking
&gt; VM.exception()</span >

per spec, this should not cause an observable error (spec algorithm uses CreateDataProperty), which ignores accessors on the prototype. Is there a model for this behaviour in JSC that permits indexed properties?

<span class="quote">&gt;&gt; Source/JavaScriptCore/tests/es6/Object_static_methods_Object.getOwnPropertyDescriptors-proxy.js:17
&gt;&gt;      }
&gt; 
&gt; Can we also add a test where the lack of an exception
&gt; check above is observable? I think it's probably doable
&gt; by having a setter/getter on Object.prototype that both
&gt; throw.</span >

as noted above, that shiuld be ignored, but ill add a test to verify that. Good catch</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>