Closed
Description
openedon Mar 22, 2016
From @chadbr on March 22, 2016 0:18
I have large legacy codebase with "manual" style namespacing like this:
//namespaces
var my = my || {};
my.app = my.app || {};
and "classes" declared like this:
my.app.Application` = (function () {
var Application = function () {
...
};
return Application;
})();
I've tried several combinations of jsconfig.json parameters and none allow me to navigate this style of code. Should this work?
- VSCode Version: 0.10.11, 0.10.12-insider
- OS Version: OSX 10.11.3
Steps to Reproduce:
- Open attached project or github repo https://github.com/chadbr/vscodeTestJS
- Open folder in vscode
- open src/app/application.js
- try to go to declaration of my.app.SomeView() -- nothing happens.
Copied from original issue: microsoft/vscode#4533
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment