Merge remote-tracking branch 'origin/master' into alex/tokenization

This commit is contained in:
Alex Dima
2017-01-05 12:31:43 +01:00
200 changed files with 4313 additions and 2328 deletions

View File

@@ -220,7 +220,6 @@ export default class TypeScriptCompletionItemProvider implements CompletionItemP
// Don't complete function calls inside of destructive assigments or imports
return this.client.execute('quickinfo', args).then(infoResponse => {
const info = infoResponse.body;
console.log(info && info.kind);
switch (info && info.kind) {
case 'var':
case 'let':