-
Notifications
You must be signed in to change notification settings - Fork 655
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
[⚙️ compiler] Fix a few additional instances of %L used instead of %N #6117
Conversation
✅ Deploy Preview for apollo-android-docs canceled.
|
add("%L·=·%L", propertyName, propertyName) | ||
add("%N·=·%N", propertyName, propertyName) |
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.
Those are for data builders
"%L·=·%L.$fromJson($reader, $customScalarAdapters)\n", | ||
"%N·=·%L.$fromJson($reader, $customScalarAdapters)\n", | ||
property.info.responseName.variableName(), |
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.
This is not really needed because we esacape with a '_' but feels more correct nonetheless
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.
👍
"%T(%T.%L)", | ||
"%T(%T.%N)", | ||
KotlinSymbols.CompiledArgument, | ||
context.resolver.resolveArgumentDefinition(definitionId), | ||
definitionPropertyName, |
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.
Same here, not really needed because there is already __
in front of definitionPropertyName
but still feels more correct
See #6116