dlang.org icon indicating copy to clipboard operation
dlang.org copied to clipboard

[spec/lex] Optional IdentifierStart after string/numeric literal suffix

Open ntrel opened this issue 2 years ago • 3 comments

This is for https://github.com/dlang/dmd/pull/15339.

I have ignored the ImaginarySuffix FloatLiteral variants, as they are deprecated.

ntrel avatar Jun 22 '23 20:06 ntrel

Thanks for your pull request and interest in making D better, @ntrel! We are looking forward to reviewing it, and you should be hearing from a maintainer soon. Please verify that your PR follows this checklist:

  • My PR is fully covered with tests (you can see the coverage diff by visiting the details link of the codecov check)
  • My PR is as minimal as possible (smaller, focused PRs are easier to review than big ones)
  • I have provided a detailed rationale explaining my changes
  • New or modified functions have Ddoc comments (with Params: and Returns:)

Please see CONTRIBUTING.md for more information.


If you have addressed all reviews or aren't sure how to proceed, don't hesitate to ping us with a simple comment.

Bugzilla references

Your PR doesn't reference any Bugzilla issue.

If your PR contains non-trivial changes, please reference a Bugzilla issue or create a manual changelog.

dlang-bot avatar Jun 22 '23 20:06 dlang-bot

In the other PR you said:

More importantly, we can never add any new literal suffixes without breaking code if we don't have an error.

When you only put IdentifierStartError after existing suffixes, you still can't add new suffixes without breaking code.

dkorpel avatar Jun 23 '23 08:06 dkorpel

Yes, this change will only catch existing suffixes running into an identifier. The more general errors could be done afterwards - now there's a way to handle them in the grammar.

ntrel avatar Jun 23 '23 16:06 ntrel