(self, entry_point)
| 831 | return Globals(exec_function(program, globals_map)) |
| 832 | |
| 833 | def execute_entry(self, entry_point): |
| 834 | # type: (Union[ModuleEntryPoint, CallableEntryPoint]) -> Any |
| 835 | if isinstance(entry_point, CallableEntryPoint): |
| 836 | return self.execute_entry_point(entry_point) |
| 837 | |
| 838 | return self.execute_module(entry_point.module) |
| 839 | |
| 840 | def execute_module(self, module_name): |
| 841 | # type: (str) -> Any |
no test coverage detected