| 266 | |
| 267 | |
| 268 | class BareQuotedString(QuotedString): |
| 269 | |
| 270 | token_type = 'bare-quoted-string' |
| 271 | |
| 272 | def __str__(self): |
| 273 | return quote_string(''.join(str(x) for x in self)) |
| 274 | |
| 275 | @property |
| 276 | def value(self): |
| 277 | return ''.join(str(x) for x in self) |
| 278 | |
| 279 | |
| 280 | class Comment(WhiteSpaceTokenList): |
no outgoing calls
no test coverage detected
searching dependent graphs…