vscode-java
vscode-java copied to clipboard
rewrite extension.ts with async/await instead of then/catch
Now we have a more complicated extension.ts than before. I find there're lots of nested then/catch blocks with various callbacks, making the execution order a little bit hard to follow. Maybe we can use async/await style for better readability and clearer flow. What do you think?