The value is a string literal, including quotes.
| 126 | |
| 127 | |
| 128 | class StringLeaf(Leaf): |
| 129 | """The value is a string literal, including quotes.""" |
| 130 | |
| 131 | def __repr__(self) -> str: |
| 132 | return f"StringLeaf({self.value!r})" |
| 133 | |
| 134 | |
| 135 | class Rhs: |
no outgoing calls
no test coverage detected
searching dependent graphs…