Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Issue 1408163005: [es6] Partially implement Reflect.getOwnPropertyDescriptor. (Closed)

Created:
5 years, 1 month ago by neis
Modified:
5 years, 1 month ago
CC:
v8-reviews_googlegroups.com
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[es6] Partially implement Reflect.getOwnPropertyDescriptor. Proxies are not properly supported yet. R=rossberg, jkummerow@chromium.org BUG= Committed: https://crrev.com/98dfe024ca3b573658a5a8572ac1fc06611c3eda Cr-Commit-Position: refs/heads/master@{#31674}

Patch Set 1 #

Total comments: 8

Patch Set 2 : Rebase. #

Patch Set 3 : See comment. #

Total comments: 2

Patch Set 4 : Address comments. #

Total comments: 2

Patch Set 5 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+224 lines, -117 lines) Patch
M src/bootstrapper.cc View 1 1 chunk +2 lines, -0 lines 0 comments Download
M src/builtins.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M src/builtins.cc View 1 1 chunk +27 lines, -0 lines 0 comments Download
M src/objects.h View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M src/objects.cc View 1 2 3 4 2 chunks +3 lines, -1 line 0 comments Download
M src/property-descriptor.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/property-descriptor.cc View 1 2 3 4 1 chunk +39 lines, -0 lines 0 comments Download
M test/mjsunit/harmony/reflect.js View 1 2 3 7 chunks +132 lines, -100 lines 0 comments Download
A + test/mjsunit/harmony/reflect-get-own-property-descriptor.js View 1 2 7 chunks +17 lines, -15 lines 0 comments Download

Messages

Total messages: 16 (3 generated)
neis
5 years, 1 month ago (2015-10-26 12:45:02 UTC) #1
Jakob Kummerow
LGTM with nits. https://codereview.chromium.org/1408163005/diff/1/src/builtins.cc File src/builtins.cc (right): https://codereview.chromium.org/1408163005/diff/1/src/builtins.cc#newcode1525 src/builtins.cc:1525: if (!found) return isolate->heap()->undefined_value(); How about ...
5 years, 1 month ago (2015-10-26 13:58:26 UTC) #2
neis
https://codereview.chromium.org/1408163005/diff/1/src/builtins.cc File src/builtins.cc (right): https://codereview.chromium.org/1408163005/diff/1/src/builtins.cc#newcode1525 src/builtins.cc:1525: if (!found) return isolate->heap()->undefined_value(); On 2015/10/26 13:58:26, Jakob wrote: ...
5 years, 1 month ago (2015-10-29 16:48:39 UTC) #3
Jakob Kummerow
On 2015/10/29 16:48:39, neis wrote: > https://codereview.chromium.org/1408163005/diff/1/src/builtins.cc > File src/builtins.cc (right): > > https://codereview.chromium.org/1408163005/diff/1/src/builtins.cc#newcode1525 > ...
5 years, 1 month ago (2015-10-29 18:06:02 UTC) #4
neis
On 2015/10/29 18:06:02, Jakob wrote: > On 2015/10/29 16:48:39, neis wrote: > > https://codereview.chromium.org/1408163005/diff/1/src/builtins.cc > ...
5 years, 1 month ago (2015-10-30 08:39:41 UTC) #5
neis
https://codereview.chromium.org/1408163005/diff/1/test/mjsunit/harmony/reflect.js File test/mjsunit/harmony/reflect.js (right): https://codereview.chromium.org/1408163005/diff/1/test/mjsunit/harmony/reflect.js#newcode347 test/mjsunit/harmony/reflect.js:347: var tgt = {bla: 42}; On 2015/10/29 18:06:02, Jakob ...
5 years, 1 month ago (2015-10-30 08:41:30 UTC) #6
Jakob Kummerow
lgtm https://codereview.chromium.org/1408163005/diff/60001/src/property-descriptor.cc File src/property-descriptor.cc (right): https://codereview.chromium.org/1408163005/diff/60001/src/property-descriptor.cc#newcode124 src/property-descriptor.cc:124: isolate->factory()->ToBoolean(writable())); nit: s/isolate->factory()/factory/, again twice below.
5 years, 1 month ago (2015-10-30 08:55:20 UTC) #7
neis
https://codereview.chromium.org/1408163005/diff/60001/src/property-descriptor.cc File src/property-descriptor.cc (right): https://codereview.chromium.org/1408163005/diff/60001/src/property-descriptor.cc#newcode124 src/property-descriptor.cc:124: isolate->factory()->ToBoolean(writable())); On 2015/10/30 08:55:19, Jakob wrote: > nit: s/isolate->factory()/factory/, ...
5 years, 1 month ago (2015-10-30 09:42:58 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1408163005/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1408163005/80001
5 years, 1 month ago (2015-10-30 09:44:39 UTC) #11
commit-bot: I haz the power
Committed patchset #5 (id:80001)
5 years, 1 month ago (2015-10-30 10:04:57 UTC) #12
commit-bot: I haz the power
Patchset 5 (id:??) landed as https://crrev.com/98dfe024ca3b573658a5a8572ac1fc06611c3eda Cr-Commit-Position: refs/heads/master@{#31674}
5 years, 1 month ago (2015-10-30 10:05:10 UTC) #13
PhistucK
It would be great if you could always make sure that the BUG= annotation is ...
5 years, 1 month ago (2015-11-02 20:42:43 UTC) #14
PhistucK
5 years, 1 month ago (2015-11-02 20:43:05 UTC) #16
Message was sent while issue was closed.

          

Powered by Google App Engine
This is Rietveld 408576698