If so, needs to be split before emitting.
(self)
| 239 | ) |
| 240 | |
| 241 | def contains_standalone_comments(self) -> bool: |
| 242 | """If so, needs to be split before emitting.""" |
| 243 | for leaf in self.leaves: |
| 244 | if leaf.type == STANDALONE_COMMENT: |
| 245 | return True |
| 246 | |
| 247 | return False |
| 248 | |
| 249 | def contains_implicit_multiline_string_with_comments(self) -> bool: |
| 250 | """Check if we have an implicit multiline string with comments on the line""" |
no outgoing calls
no test coverage detected