Compute the indices that need indention
Based on token
, find the rows in pd
that need to be indented.
compute_indent_indices(pd, token_opening, token_closing = NULL)
pd |
A parse table. |
token_opening |
A character vector with tokens that could induce indention for subsequent tokens. |
token_closing |
A character vector with tokens that could terminate
indention for previous tokens. If |
Two cases are fundamentally different:
Indention based on operators (e.g '+'), where all subsequent tokens should be indented.
Indention based on braces (e.g. '('), where just the tokens between the opening and the closing brace have to be indented.
To cover the second case, we need token_closing
because it cannot be taken
for granted that token_closing
is always the last token in pd
. For
example in if-else expressions, this is not the case and indenting
everything between '(' and the penultimate token would result in the wrong
formatting.
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.