(self)
| 266 | return ast |
| 267 | |
| 268 | def get_dispatcher(self): |
| 269 | try: |
| 270 | return Dispatcher(self.pre_exercise_code) |
| 271 | except Exception as e: |
| 272 | with debugger(self): |
| 273 | self.report("Something went wrong when parsing the PEC: %s" % str(e)) |
| 274 | |
| 275 | |
| 276 | class Dispatcher(DispatcherInterface): |