Revision 11414d24d480c3776908ae1cf5d71326bf278861 authored by Pete Bacon Darwin on 12 June 2021, 19:56:05 UTC, committed by atscott on 02 August 2021, 16:53:16 UTC
These token interfaces will make it easier to reason about tokens in the
parser and in specs.

Previously, it was never clear what items could appear in the `parts`
array of a token given a particular `TokenType`. Now, each token interface
declares a labelled tuple for the parts, which helps to document the token
better.

PR Close #42062
1 parent 82ca69d
Raw File
.editorconfig
# https://editorconfig.org

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
back to top