| 259 | |
| 260 | |
| 261 | class BareQuotedString(QuotedString): |
| 262 | |
| 263 | token_type = 'bare-quoted-string' |
| 264 | |
| 265 | def __str__(self): |
| 266 | return quote_string(''.join(str(x) for x in self)) |
| 267 | |
| 268 | @property |
| 269 | def value(self): |
| 270 | return ''.join(str(x) for x in self) |
| 271 | |
| 272 | |
| 273 | class Comment(WhiteSpaceTokenList): |
no outgoing calls
no test coverage detected