-
Notifications
You must be signed in to change notification settings - Fork 258
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
Add ability to emit errors in json + capture symbol name in error_entry
#1314
Conversation
There's probably more to be captured but I didn't want to start tearing through the code prematurely
So, JSON Lines format. :) |
Lol I suppose so haha. I've never heard of the jsonlines format, but it makes sense! (Discovered/used out of laziness on my part lol). Although I don't know that its even necessarily jsonlines, since when I parse through the stderr string, there are some lines that aren't json! But again, not the hardest thing to deal with |
source/common.h
Outdated
@@ -997,6 +1004,7 @@ struct error_entry | |||
{ | |||
source_position where; | |||
std::string msg; | |||
std::string symbol = std::string(""); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need an initializer here, it has a perfectly fine default constructor (see the line above).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, for some reason I was thinking I needed to give explicitly give it a default value. Will fix, thanks!
Why not just |
Since I declared a variable s = peek(), its better to use it now instead of leaving the duplicate peek expression
I'm not sure if I understand your suggestion. I mean, ideally I would rather have it structured as you mentioned, but it seemed simpler to me to modify the Mainly I was just trying to make the least invasive change I could to unblock the language server work |
The more I'm thinking about this, the more I'm thinking this PR is the wrong approach. It solves the immediate problem of error reporting, but doesn't help solve any problems we'd run into later (when implementing a language server) like keeping track of identifiers and things of that sort. I notice there's a debug flag that outputs a couple of interesting files (parse, source, symbols, and tokens) - this is probably the more all-encompassing approach that needs to be done here. Some flag that can output a bunch of diagnostics information the compiler gathers (instead of just errors), and writes it out to json. This would be more generally useful I think. Anyhow, I won't close this PR yet (in case it's decided we should keep the changes anyways), but maybe its better to scrap it and start again. Edit: |
Main Changes
json-errors
This will cause
error_entry.print
to print out its errors as a json string instead of a flat string. The flag is mutually exclusive from the-fo
flag, i.e: if it's set, it will override the behavior of-fo
even if-fo
is present.(Perhaps we should add an error message in if both are set?)
symbol
field toerror_entry
I noticed I needed to know the name of the symbol/identifier listed in the error (when it's present) so I know the length to make the little error squiggle. Initially, I was just parsing it out of the error message (with regex) on the language-server side, but later was able to just add the extra field into
error_entry
so that we can avoid that. I don't know ifsymbol
is the most appropriate name, so I can change if we think something else works better.Other thoughts/context
The ugly aspect of these changes in my mind is that the errors are emitted as a bunch of json objects separated by newlines. The pedantic/purist might argue it would be better if all the errors were actually put into an actual json array so the whole thing could be parsed in one fell swoope, but I surmise this is probably more trouble than its worth. It's easy enough in the language server to split the string into lines and then parse each line individually, e.g:
If anything looks off, I'm happy to fix!
Thanks!