This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
debugger: get/set property not displayed #7139
Labels
Comments
@3y3 ... is this still an issue for you? |
@jasnell I can confirm the issue is still present in
function test(){
var prop = 'value',
object = {};
Object.defineProperty(object, 'prop', {
get: function(){return prop},
set: function(value){prop = value;},
enumerable: true
});
debugger;
}
test();
Notice that |
richardlau
pushed a commit
to ibmruntimes/node
that referenced
this issue
Jun 17, 2016
Notable changes: * **http**: - req.read(0) could cause incoming connections to stall and time out under certain conditions. (Fedor Indutny) [nodejs#7211](nodejs/node#7211) - When freeing the socket to be reused in keep-alive Agent wait for both prefinish and end events. Otherwise the next request may be written before the previous one has finished sending the body, leading to a parser errors. (Fedor Indutny) [nodejs#7149](nodejs/node#7149) * **npm**: upgrade npm to 3.9.5 (Kat Marchán) [nodejs#7139](nodejs/node#7139) nodejs/node#7323
richardlau
pushed a commit
to ibmruntimes/node
that referenced
this issue
Jun 17, 2016
Notable changes: * **http**: - req.read(0) could cause incoming connections to stall and time out under certain conditions. (Fedor Indutny) [nodejs#7211](nodejs/node#7211) - When freeing the socket to be reused in keep-alive Agent wait for both prefinish and end events. Otherwise the next request may be written before the previous one has finished sending the body, leading to a parser errors. (Fedor Indutny) [nodejs#7149](nodejs/node#7149) * **npm**: upgrade npm to 3.9.5 (Kat Marchán) [nodejs#7139](nodejs/node#7139) nodejs/node#7323
gibfahn
pushed a commit
to ibmruntimes/node
that referenced
this issue
Jun 20, 2016
Notable changes: * **http**: - req.read(0) could cause incoming connections to stall and time out under certain conditions. (Fedor Indutny) [nodejs#7211](nodejs/node#7211) - When freeing the socket to be reused in keep-alive Agent wait for both prefinish and end events. Otherwise the next request may be written before the previous one has finished sending the body, leading to a parser errors. (Fedor Indutny) [nodejs#7149](nodejs/node#7149) * **npm**: upgrade npm to 3.9.5 (Kat Marchán) [nodejs#7139](nodejs/node#7139) PR-URL: nodejs/node#7323
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Test for issue
The text was updated successfully, but these errors were encountered: