Character span in the original string Args: start: index of the first character in the original string end: index of the character following the last character in the original string
| 103 | |
| 104 | |
| 105 | class CharSpan(NamedTuple): |
| 106 | """ Character span in the original string |
| 107 | |
| 108 | Args: |
| 109 | start: index of the first character in the original string |
| 110 | end: index of the character following the last character in the original string |
| 111 | """ |
| 112 | |
| 113 | start: int |
| 114 | end: int |
| 115 | |
| 116 | |
| 117 | class TokenSpan(NamedTuple): |
no outgoing calls
no test coverage detected