(self)
| 13 | This class is a tool to allow execution of Java code. |
| 14 | """ |
| 15 | def __init__(self): |
| 16 | super().__init__() |
| 17 | self.tag = "java" |
| 18 | self.name = "Java Interpreter" |
| 19 | self.description = "This tool allows you to execute Java code." |
| 20 | |
| 21 | def execute(self, codes: str, safety=False) -> str: |
| 22 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected