(blockStatements)
| 204 | return SplootNode("PYTHON_EXPRESSION", {"tokens": tokens}) |
| 205 | |
| 206 | def getBlockBodyFromStatements(blockStatements): |
| 207 | body = [generateSplootStatement(s) for s in blockStatements] |
| 208 | body = [s for s in body if s is not None] |
| 209 | return body |
| 210 | |
| 211 | |
| 212 | def generateIf(statement): |
no test coverage detected