This repository was archived by the owner on May 6, 2020. It is now read-only.
This repository was archived by the owner on May 6, 2020. It is now read-only.
Not all variables are visible in Eclipse debugger 'Variables' view #83
Open
Description
Eclipse version: 3.8.0
Chromium Javascript Remote Debugger version: 0.3.8.201210040400
Node.JS version: 0.6.19
OS + version: Ubuntu 12.10 (Linux Mint 14 Cinnamon)
What steps will reproduce the problem?
1. Set up a node.js server using:
require('http').createServer(function(request, response){
util.debug(request.connection.remoteAddress); // whatever... }).listen(8080);
2. Set breakpoint in the router function
3. The Variable Explorer will show no such attribute "remoteAddress" in
"request.connection" even though it shows a whole bunch of other stuff.
Entering "request.connection.remoteAddress" in the Expression Window DOES
however show "127.0.0.1"
What is the expected result?
request.connection.remoteAddress in the Variable window upon debug/break
What happens instead?
Bunch of other stuff is visible, but not remoteAddress. Makes one wonder what
else is valid but hidden.
Original issue reported on code.google.com by redsandro
on 22 Jan 2013 at 3:05