(code , context)
| 21782 | } |
| 21783 | |
| 21784 | exec(code , context) { |
| 21785 | const ast = this.ast; |
| 21786 | const program = ast.parse(code, '', null, null); |
| 21787 | if (!program) { |
| 21788 | throw new python.Error("Module '?' parse error."); |
| 21789 | } |
| 21790 | this.block(program.body, context); |
| 21791 | } |
| 21792 | |
| 21793 | debug(/* file */) { |
| 21794 | } |
no test coverage detected