Skip to content

[spec] Clarify that strings can separate tokens #1490

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

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion document/core/text/lexical.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ The set of *keyword* tokens is defined implicitly, by all occurrences of a :ref:
Any token that does not fall into any of the other categories is considered *reserved*, and cannot occur in source text.

.. note::
The effect of defining the set of reserved tokens is that all tokens must be separated by either parentheses or :ref:`white space <text-space>`.
The effect of defining the set of reserved tokens is that all tokens must be separated by either parentheses,
:ref:`white space <text-space>`, or :ref:`string <text-string>` literals.
For example, :math:`\text{0\$x}` is a single reserved token.
Consequently, it is not recognized as two separate tokens :math:`\text{0}` and :math:`\text{\$x}`, but instead disallowed.
This property of tokenization is not affected by the fact that the definition of reserved tokens overlaps with other token classes.
Expand Down