A range to highlight in a Syntax object. `start` and `end` are 2-integers tuples, where the first integer is the line number (starting from 1) and the second integer is the column index (starting from 0).
| 217 | |
| 218 | |
| 219 | class _SyntaxHighlightRange(NamedTuple): |
| 220 | """ |
| 221 | A range to highlight in a Syntax object. |
| 222 | `start` and `end` are 2-integers tuples, where the first integer is the line number |
| 223 | (starting from 1) and the second integer is the column index (starting from 0). |
| 224 | """ |
| 225 | |
| 226 | style: StyleType |
| 227 | start: SyntaxPosition |
| 228 | end: SyntaxPosition |
| 229 | style_before: bool = False |
| 230 | |
| 231 | |
| 232 | class PaddingProperty: |
no outgoing calls