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

Issue 1027283004: [es6] do not add caller/arguments to ES6 function definitions (Closed)

Created:
5 years, 9 months ago by caitp (gmail)
Modified:
5 years, 8 months ago
CC:
v8-dev, Paweł Hajdan Jr.
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[es6] do not add caller/arguments to ES6 function definitions BUG=v8:3946, v8:3982 CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_rel_ng;tryserver.blink:linux_blink_rel LOG=N R=arv@chromium.org, rossberg@chromium.org Committed: https://crrev.com/9836c34dba61b6bb7732fe78df3ff4e8a4509387 Cr-Commit-Position: refs/heads/master@{#27729}

Patch Set 1 #

Patch Set 2 : Use same maps for strict/sloppy plain functions #

Patch Set 3 : git cl format #

Patch Set 4 : Remove unneeded bits #

Total comments: 7

Patch Set 5 : rebase #

Patch Set 6 : some nits #

Patch Set 7 : few more #

Patch Set 8 : Rename some maps #

Patch Set 9 : Delete code which creates generator poison function #

Patch Set 10 : Remove more dead code #

Patch Set 11 : Get rid of "own" function restricted props, per spec #

Patch Set 12 : Fix typos and some bugs that crept into last patch set #

Patch Set 13 : Roll back the generator-methods-are-non-constructors thing #

Patch Set 14 : git cl format #

Patch Set 15 : rebase #

Patch Set 16 : diff cleanup #

Total comments: 13

Patch Set 17 : Rename variable, add some comments #

Total comments: 2

Patch Set 18 : Also test that the restricted properties setters throw #

Patch Set 19 : rebase #

Patch Set 20 : Keep the old strict/sloppy generator maps #

Patch Set 21 : try it again #

Patch Set 22 : fix webkit tests #

Patch Set 23 : Expect failures from no-longer-valid test262 stuff #

Patch Set 24 : Rebase + test262 exceptions #

Total comments: 18

Patch Set 25 : Delete some bad webkit tests, syntactic accessors are always strict #

Patch Set 26 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+420 lines, -507 lines) Patch
M src/bootstrapper.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 14 chunks +67 lines, -103 lines 0 comments Download
M src/builtins.h View 1 2 3 4 5 6 7 8 9 10 16 17 18 19 20 21 22 23 1 chunk +20 lines, -20 lines 0 comments Download
M src/builtins.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +8 lines, -7 lines 0 comments Download
M src/contexts.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +6 lines, -7 lines 0 comments Download
M src/factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 2 chunks +7 lines, -5 lines 0 comments Download
M src/factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 4 chunks +24 lines, -13 lines 0 comments Download
M src/messages.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +1 line, -1 line 0 comments Download
M test/mjsunit/es6/generators-poisoned-properties.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +29 lines, -27 lines 0 comments Download
M test/mjsunit/es6/generators-runtime.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 2 chunks +8 lines, -10 lines 0 comments Download
M test/mjsunit/function-bind.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +8 lines, -4 lines 0 comments Download
M test/mjsunit/harmony/arrow-functions.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +23 lines, -0 lines 0 comments Download
M test/mjsunit/harmony/classes.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +66 lines, -0 lines 0 comments Download
M test/mjsunit/harmony/computed-property-names-classes.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +6 lines, -8 lines 0 comments Download
M test/mjsunit/harmony/object-literals-method.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +28 lines, -0 lines 0 comments Download
M test/mjsunit/strict-mode.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +43 lines, -15 lines 0 comments Download
M test/test262-es6/test262-es6.status View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +19 lines, -0 lines 0 comments Download
M test/test262/test262.status View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +18 lines, -0 lines 0 comments Download
M test/webkit/fast/js/Object-getOwnPropertyNames.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +6 lines, -6 lines 0 comments Download
M test/webkit/fast/js/Object-getOwnPropertyNames-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +6 lines, -6 lines 0 comments Download
M test/webkit/fast/js/basic-strict-mode.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 3 chunks +10 lines, -8 lines 0 comments Download
M test/webkit/fast/js/basic-strict-mode-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 3 chunks +17 lines, -15 lines 0 comments Download
D test/webkit/fast/js/caller-property.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +0 lines, -85 lines 0 comments Download
M test/webkit/fast/js/caller-property-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +0 lines, -51 lines 0 comments Download
M test/webkit/strict-throw-type-error.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +0 lines, -73 lines 0 comments Download
D test/webkit/strict-throw-type-error-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +0 lines, -43 lines 0 comments Download

Messages

Total messages: 94 (23 generated)
caitp (gmail)
PTAL --- this doesn't deal with bound functions, which apparently shouldn't have these properties either. ...
5 years, 9 months ago (2015-03-23 20:57:46 UTC) #1
arv (Not doing code reviews)
It is not clear why we need 4 new maps? Can you list the different ...
5 years, 9 months ago (2015-03-24 11:30:50 UTC) #3
caitp (gmail)
On 2015/03/24 11:30:50, arv wrote: > It is not clear why we need 4 new ...
5 years, 9 months ago (2015-03-24 11:35:02 UTC) #4
caitp (gmail)
On 2015/03/24 11:35:02, caitp wrote: > On 2015/03/24 11:30:50, arv wrote: > > It is ...
5 years, 9 months ago (2015-03-24 11:36:23 UTC) #5
rossberg
On 2015/03/24 11:36:23, caitp wrote: > It may be possible to just reuse the strong ...
5 years, 9 months ago (2015-03-24 11:40:08 UTC) #6
caitp (gmail)
On 2015/03/24 11:40:08, rossberg wrote: > On 2015/03/24 11:36:23, caitp wrote: > > It may ...
5 years, 9 months ago (2015-03-24 13:21:31 UTC) #7
arv (Not doing code reviews)
https://codereview.chromium.org/1027283004/diff/60001/src/bootstrapper.cc File src/bootstrapper.cc (right): https://codereview.chromium.org/1027283004/diff/60001/src/bootstrapper.cc#newcode301 src/bootstrapper.cc:301: Handle<Map> plain_function_map_writable_prototype_; Can you rename these. Right now it ...
5 years, 9 months ago (2015-03-25 13:36:47 UTC) #8
caitp (gmail)
https://codereview.chromium.org/1027283004/diff/60001/src/bootstrapper.cc File src/bootstrapper.cc (right): https://codereview.chromium.org/1027283004/diff/60001/src/bootstrapper.cc#newcode301 src/bootstrapper.cc:301: Handle<Map> plain_function_map_writable_prototype_; On 2015/03/25 13:36:47, arv wrote: > Can ...
5 years, 9 months ago (2015-03-25 13:42:59 UTC) #9
caitp (gmail)
https://codereview.chromium.org/1027283004/diff/60001/test/mjsunit/es6/generators-runtime.js File test/mjsunit/es6/generators-runtime.js (right): https://codereview.chromium.org/1027283004/diff/60001/test/mjsunit/es6/generators-runtime.js#newcode50 test/mjsunit/es6/generators-runtime.js:50: var f_own_property_names = removePoisoned(Object.getOwnPropertyNames(f)); On 2015/03/25 13:36:47, arv wrote: ...
5 years, 9 months ago (2015-03-25 13:58:09 UTC) #10
arv (Not doing code reviews)
On 2015/03/25 13:58:09, caitp wrote: > https://codereview.chromium.org/1027283004/diff/60001/test/mjsunit/es6/generators-runtime.js > File test/mjsunit/es6/generators-runtime.js (right): > > https://codereview.chromium.org/1027283004/diff/60001/test/mjsunit/es6/generators-runtime.js#newcode50 > ...
5 years, 9 months ago (2015-03-25 14:14:36 UTC) #11
caitp (gmail)
On 2015/03/25 14:14:36, arv wrote: > On 2015/03/25 13:58:09, caitp wrote: > > > https://codereview.chromium.org/1027283004/diff/60001/test/mjsunit/es6/generators-runtime.js ...
5 years, 9 months ago (2015-03-25 14:18:45 UTC) #12
arv (Not doing code reviews)
On 2015/03/25 14:18:45, caitp wrote: > On 2015/03/25 14:14:36, arv wrote: > > On 2015/03/25 ...
5 years, 9 months ago (2015-03-25 14:28:38 UTC) #13
caitp (gmail)
On 2015/03/25 14:28:38, arv wrote: > On 2015/03/25 14:18:45, caitp wrote: > > On 2015/03/25 ...
5 years, 9 months ago (2015-03-25 15:01:20 UTC) #14
caitp (gmail)
On 2015/03/25 15:01:20, caitp wrote: > On 2015/03/25 14:28:38, arv wrote: > > On 2015/03/25 ...
5 years, 9 months ago (2015-03-25 15:36:20 UTC) #16
caitp (gmail)
On 2015/03/25 15:36:20, caitp wrote: > You know what though, it looks like the stuff ...
5 years, 9 months ago (2015-03-25 17:08:33 UTC) #17
caitp (gmail)
H'okay --- here's a new variation, I've tried to go as close to my understanding ...
5 years, 9 months ago (2015-03-25 22:50:21 UTC) #18
caitp (gmail)
On 2015/03/25 22:50:21, caitp wrote: > H'okay --- here's a new variation, I've tried to ...
5 years, 9 months ago (2015-03-26 00:32:19 UTC) #19
arv (Not doing code reviews)
LGTM Andreas, can you take a look too? https://codereview.chromium.org/1027283004/diff/350001/src/factory.cc File src/factory.cc (right): https://codereview.chromium.org/1027283004/diff/350001/src/factory.cc#newcode1273 src/factory.cc:1273: Handle<Map> ...
5 years, 9 months ago (2015-03-26 12:46:43 UTC) #22
caitp (gmail)
https://codereview.chromium.org/1027283004/diff/350001/src/factory.cc File src/factory.cc (right): https://codereview.chromium.org/1027283004/diff/350001/src/factory.cc#newcode1273 src/factory.cc:1273: Handle<Map> map = use_empty_function_map On 2015/03/26 12:46:43, arv wrote: ...
5 years, 9 months ago (2015-03-26 13:00:17 UTC) #23
caitp (gmail)
https://codereview.chromium.org/1027283004/diff/350001/src/factory.cc File src/factory.cc (right): https://codereview.chromium.org/1027283004/diff/350001/src/factory.cc#newcode1286 src/factory.cc:1286: ? isolate()->strict_function_map() On 2015/03/26 13:00:17, caitp wrote: > On ...
5 years, 9 months ago (2015-03-26 13:03:02 UTC) #24
arv (Not doing code reviews)
https://codereview.chromium.org/1027283004/diff/350001/src/factory.cc File src/factory.cc (right): https://codereview.chromium.org/1027283004/diff/350001/src/factory.cc#newcode1273 src/factory.cc:1273: Handle<Map> map = use_empty_function_map On 2015/03/26 13:00:17, caitp wrote: ...
5 years, 9 months ago (2015-03-26 13:03:30 UTC) #25
caitp (gmail)
https://codereview.chromium.org/1027283004/diff/350001/src/factory.cc File src/factory.cc (right): https://codereview.chromium.org/1027283004/diff/350001/src/factory.cc#newcode1286 src/factory.cc:1286: ? isolate()->strict_function_map() On 2015/03/26 13:03:30, arv wrote: > On ...
5 years, 9 months ago (2015-03-26 13:46:01 UTC) #26
arv (Not doing code reviews)
https://codereview.chromium.org/1027283004/diff/370001/src/factory.cc File src/factory.cc (right): https://codereview.chromium.org/1027283004/diff/370001/src/factory.cc#newcode1284 src/factory.cc:1284: // In strict mode, readonly strict map is only ...
5 years, 9 months ago (2015-03-26 13:59:14 UTC) #27
caitp (gmail)
https://codereview.chromium.org/1027283004/diff/370001/src/factory.cc File src/factory.cc (right): https://codereview.chromium.org/1027283004/diff/370001/src/factory.cc#newcode1284 src/factory.cc:1284: // In strict mode, readonly strict map is only ...
5 years, 9 months ago (2015-03-26 14:08:46 UTC) #28
caitp (gmail)
On 2015/03/26 14:08:46, caitp wrote: > https://codereview.chromium.org/1027283004/diff/370001/src/factory.cc > File src/factory.cc (right): > > https://codereview.chromium.org/1027283004/diff/370001/src/factory.cc#newcode1284 > ...
5 years, 9 months ago (2015-03-26 14:10:32 UTC) #29
arv (Not doing code reviews)
On 2015/03/26 14:08:46, caitp wrote: > https://codereview.chromium.org/1027283004/diff/370001/src/factory.cc > File src/factory.cc (right): > > https://codereview.chromium.org/1027283004/diff/370001/src/factory.cc#newcode1284 > ...
5 years, 9 months ago (2015-03-26 14:13:49 UTC) #30
rossberg
Look mostly good https://codereview.chromium.org/1027283004/diff/350001/src/bootstrapper.cc File src/bootstrapper.cc (right): https://codereview.chromium.org/1027283004/diff/350001/src/bootstrapper.cc#newcode360 src/bootstrapper.cc:360: static const bool kInstallConstructor = false; ...
5 years, 9 months ago (2015-03-26 15:06:45 UTC) #31
rossberg
On 2015/03/26 15:06:45, rossberg wrote: > For symmetry and possibly future uses, I would prepare ...
5 years, 9 months ago (2015-03-26 15:07:14 UTC) #32
caitp (gmail)
https://codereview.chromium.org/1027283004/diff/350001/src/bootstrapper.cc File src/bootstrapper.cc (right): https://codereview.chromium.org/1027283004/diff/350001/src/bootstrapper.cc#newcode360 src/bootstrapper.cc:360: static const bool kInstallConstructor = false; On 2015/03/26 15:06:45, ...
5 years, 9 months ago (2015-03-26 15:09:46 UTC) #33
caitp (gmail)
https://codereview.chromium.org/1027283004/diff/350001/src/contexts.h File src/contexts.h (right): https://codereview.chromium.org/1027283004/diff/350001/src/contexts.h#newcode179 src/contexts.h:179: V(GENERATOR_FUNCTION_MAP_INDEX, Map, generator_function_map) \ On 2015/03/26 15:09:46, caitp wrote: ...
5 years, 9 months ago (2015-03-26 15:35:47 UTC) #34
rossberg
lgtm
5 years, 9 months ago (2015-03-26 15:44:21 UTC) #35
caitp (gmail)
On 2015/03/26 15:44:21, rossberg wrote: > lgtm Thanks -- I think will wait for Toon's ...
5 years, 9 months ago (2015-03-26 15:45:25 UTC) #36
caitp (gmail)
On 2015/03/26 15:45:25, caitp wrote: > On 2015/03/26 15:44:21, rossberg wrote: > > lgtm > ...
5 years, 9 months ago (2015-03-26 17:21:11 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1027283004/430001
5 years, 9 months ago (2015-03-26 17:26:01 UTC) #40
commit-bot: I haz the power
Try jobs failed on following builders: v8_mac_rel on tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_mac_rel/builds/4408)
5 years, 9 months ago (2015-03-26 17:33:59 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1027283004/450001
5 years, 9 months ago (2015-03-26 17:36:22 UTC) #46
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1027283004/470001
5 years, 9 months ago (2015-03-26 17:42:21 UTC) #50
commit-bot: I haz the power
Try jobs failed on following builders: v8_win64_rel on tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_win64_rel/builds/3331)
5 years, 9 months ago (2015-03-26 18:17:15 UTC) #52
caitp (gmail)
On 2015/03/26 18:17:15, I haz the power (commit-bot) wrote: > Try jobs failed on following ...
5 years, 9 months ago (2015-03-26 18:20:32 UTC) #53
Jakob Kummerow
On 2015/03/26 18:20:32, caitp wrote: > I'm not sure > the best approach to fixing ...
5 years, 9 months ago (2015-03-26 21:29:56 UTC) #54
caitp (gmail)
On 2015/03/26 21:29:56, Jakob wrote: > On 2015/03/26 18:20:32, caitp wrote: > > I'm not ...
5 years, 9 months ago (2015-03-26 22:18:13 UTC) #55
caitp (gmail)
On 2015/03/26 22:18:13, caitp wrote: > On 2015/03/26 21:29:56, Jakob wrote: > > On 2015/03/26 ...
5 years, 9 months ago (2015-03-26 22:19:07 UTC) #56
caitp (gmail)
On 2015/03/26 22:19:07, caitp wrote: > On 2015/03/26 22:18:13, caitp wrote: > > On 2015/03/26 ...
5 years, 9 months ago (2015-03-27 08:53:31 UTC) #57
Jakob Kummerow
> > well, or it can go on ice for a bit, either way is ...
5 years, 9 months ago (2015-03-27 09:16:54 UTC) #58
Dmitry Lomov (no reviews)
On 2015/03/27 09:16:54, Jakob wrote: > > > well, or it can go on ice ...
5 years, 9 months ago (2015-03-27 10:41:53 UTC) #59
Jakob Kummerow
Branch has been made. Land this now, or rebase onto https://codereview.chromium.org/1005393004/ ;-)
5 years, 8 months ago (2015-04-07 10:49:52 UTC) #60
caitp (gmail)
On 2015/04/07 10:49:52, Jakob wrote: > Branch has been made. Land this now, or rebase ...
5 years, 8 months ago (2015-04-07 14:27:19 UTC) #61
arv (Not doing code reviews)
We need to make sure length and name of the %ThrowTypeError% function are non configurable ...
5 years, 8 months ago (2015-04-07 16:18:39 UTC) #62
caitp (gmail)
thanks for the look (I have some questions in here) https://codereview.chromium.org/1027283004/diff/530001/src/builtins.cc File src/builtins.cc (right): https://codereview.chromium.org/1027283004/diff/530001/src/builtins.cc#newcode1019 ...
5 years, 8 months ago (2015-04-07 16:29:58 UTC) #63
arv (Not doing code reviews)
https://codereview.chromium.org/1027283004/diff/530001/src/contexts.h File src/contexts.h (right): https://codereview.chromium.org/1027283004/diff/530001/src/contexts.h#newcode594 src/contexts.h:594: : is_strict(language_mode) || !IsAccessorFunction(kind) On 2015/04/07 16:29:57, caitp wrote: ...
5 years, 8 months ago (2015-04-07 17:00:12 UTC) #64
caitp (gmail)
https://codereview.chromium.org/1027283004/diff/530001/src/contexts.h File src/contexts.h (right): https://codereview.chromium.org/1027283004/diff/530001/src/contexts.h#newcode594 src/contexts.h:594: : is_strict(language_mode) || !IsAccessorFunction(kind) On 2015/04/07 17:00:11, arv wrote: ...
5 years, 8 months ago (2015-04-07 17:10:36 UTC) #65
arv (Not doing code reviews)
https://codereview.chromium.org/1027283004/diff/530001/src/contexts.h File src/contexts.h (right): https://codereview.chromium.org/1027283004/diff/530001/src/contexts.h#newcode594 src/contexts.h:594: : is_strict(language_mode) || !IsAccessorFunction(kind) On 2015/04/07 17:10:36, caitp wrote: ...
5 years, 8 months ago (2015-04-07 18:22:03 UTC) #66
caitp (gmail)
On 2015/04/07 18:22:03, arv wrote: > https://codereview.chromium.org/1027283004/diff/530001/src/contexts.h > File src/contexts.h (right): > > https://codereview.chromium.org/1027283004/diff/530001/src/contexts.h#newcode594 > ...
5 years, 8 months ago (2015-04-07 18:29:35 UTC) #67
arv (Not doing code reviews)
On 2015/04/07 18:29:35, caitp wrote: > you know what, I think the spec is actually ...
5 years, 8 months ago (2015-04-07 18:31:15 UTC) #68
caitp (gmail)
On 2015/04/07 18:31:15, arv wrote: > On 2015/04/07 18:29:35, caitp wrote: > > you know ...
5 years, 8 months ago (2015-04-07 19:33:08 UTC) #69
arv (Not doing code reviews)
LGTM Consider adding the following before CQ'ing: CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_rel_ng;tryserver.blink:linux_blink_rel to the CL description since it is ...
5 years, 8 months ago (2015-04-07 20:07:04 UTC) #70
caitp (gmail)
On 2015/04/07 20:07:04, arv wrote: > LGTM > > Consider adding the following before CQ'ing: ...
5 years, 8 months ago (2015-04-07 20:08:39 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1027283004/550001
5 years, 8 months ago (2015-04-07 20:10:07 UTC) #74
caitp (gmail)
On 2015/04/07 20:10:07, I haz the power (commit-bot) wrote: > CQ is trying da patch. ...
5 years, 8 months ago (2015-04-07 23:51:15 UTC) #75
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/51608)
5 years, 8 months ago (2015-04-08 00:02:11 UTC) #77
caitp (gmail)
On 2015/04/08 00:02:11, I haz the power (commit-bot) wrote: > Try jobs failed on following ...
5 years, 8 months ago (2015-04-08 00:04:20 UTC) #78
caitp (gmail)
On 2015/04/08 00:04:20, caitp wrote: > On 2015/04/08 00:02:11, I haz the power (commit-bot) wrote: ...
5 years, 8 months ago (2015-04-08 01:24:13 UTC) #79
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1027283004/550001
5 years, 8 months ago (2015-04-08 20:46:56 UTC) #81
commit-bot: I haz the power
Try jobs failed on following builders: linux_blink_rel on tryserver.blink (JOB_FAILED, http://build.chromium.org/p/tryserver.blink/builders/linux_blink_rel/builds/56527)
5 years, 8 months ago (2015-04-08 22:45:27 UTC) #83
caitp (gmail)
On 2015/04/08 22:45:27, I haz the power (commit-bot) wrote: > Try jobs failed on following ...
5 years, 8 months ago (2015-04-09 01:38:02 UTC) #84
arv (Not doing code reviews)
On 2015/04/09 01:38:02, caitp wrote: > On 2015/04/08 22:45:27, I haz the power (commit-bot) wrote: ...
5 years, 8 months ago (2015-04-09 14:20:05 UTC) #85
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1027283004/550001
5 years, 8 months ago (2015-04-09 20:09:27 UTC) #87
commit-bot: I haz the power
Try jobs failed on following builders: linux_blink_rel on tryserver.blink (JOB_FAILED, http://build.chromium.org/p/tryserver.blink/builders/linux_blink_rel/builds/56759)
5 years, 8 months ago (2015-04-09 20:38:46 UTC) #89
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1027283004/570001
5 years, 8 months ago (2015-04-09 20:44:10 UTC) #92
commit-bot: I haz the power
Committed patchset #26 (id:570001)
5 years, 8 months ago (2015-04-09 22:40:28 UTC) #93
commit-bot: I haz the power
5 years, 8 months ago (2015-04-09 22:40:48 UTC) #94
Message was sent while issue was closed.
Patchset 26 (id:??) landed as
https://crrev.com/9836c34dba61b6bb7732fe78df3ff4e8a4509387
Cr-Commit-Position: refs/heads/master@{#27729}

Powered by Google App Engine
This is Rietveld 408576698