NTVS 21020.00
VS2013 update4 RC
We are not getting autocomplete on .listen(port) in the following code.
```
var http = require('http');
var port = process.env.port || 1337;
http.createServer(function (req, res) {
res.writeHead(200, { 'content-type': 'text/plain' });
res.end('hello world\n');
}).listen(port);
```
Comments: Verified in build 21022.00. Fixed. Closing.
VS2013 update4 RC
We are not getting autocomplete on .listen(port) in the following code.
```
var http = require('http');
var port = process.env.port || 1337;
http.createServer(function (req, res) {
res.writeHead(200, { 'content-type': 'text/plain' });
res.end('hello world\n');
}).listen(port);
```
Comments: Verified in build 21022.00. Fixed. Closing.