-
Notifications
You must be signed in to change notification settings - Fork 7
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
Updates symbol serialization in all Location subclasses in Scanner #214
Conversation
@@ -45,7 +46,7 @@ public String tabSeparatedToString() { | |||
"\t", | |||
type.toString(), | |||
enclosingClass.flatName(), |
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.
Should we do this, for consistency?
enclosingClass.flatName(), | |
Serializer.serializeSymbol(enclosingClass), |
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.
Sure, we can. I will update it for all locations.
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.
@msridhar Updated in all subclasses, looks much better now.
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.
👍
Followup to #213, this PR fixes symbol serialization in all
Location
subclasses.