-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible bug in clojureDefinition.ts #26
Comments
Hi, @simonvizzini. We use JavaScript promise here, so it's totally fine to just call the |
I totally understand Promises, but you are calling reject without a return, which means code execution will continue after the reject. In other places you explicitly call |
Very good point. It's actually me who doesn't understand Promises :-) I fixed the bug. Thanks again! |
You're welcome! I use the same |
Hey, I totally randomly stumbled upon your extension. I was just looking for some example VS Code language support extensions :)
While reading clojureDefinition.ts I noticed there is probably a return statement missing at line 31, or maybe I'm missing something. I think the code that follows should throw if
info.file
is null/undefined/empty? But apparently that never happened yet?The text was updated successfully, but these errors were encountered: