soates / Auto-Import

vscode extension that will automatically finds, parses and provides code actions for all available imports. Only currently works with files in your folder and TypeScript.
MIT License
164 stars 62 forks source link

Add Auto Complete feature to JSON.stringfy method. #105

Open EliaquimNascimento opened 4 years ago

EliaquimNascimento commented 4 years ago

Hi! Thanks for your extension on Visual Studio. It helps me a lot! ^^ I want to ask you if you can add the autocomplete feature in a case that I apply a global object to a local object, for example:

let globalObject = {
       hair: "black",
       eyes: "brown"
}

Game_System.prototype.initiate = function(){
         this._obj =  JSON.parse(JSON.stringfy(globalObject))
}

$gameSystem = new Game_System();

Inside my application, it works ok. But I really want it to work inside the visual studio code. If I type: globalObject .[it will autocomplete as property]

but in this case: $gameSystem._obj.[it not autocomplete like a property]