No description
Find a file
Kumi 9f3e4f3d4a
feat(interpreter): enhance result representation
Improve the handling of expression evaluation results in the interpreter by attempting to use `__repr__`, falling back to `str`, and finally relying on a basic string conversion if necessary. This approach ensures more robust and informative output for various types of objects, addressing potential issues where the direct conversion to a string might fail or not provide sufficiently detailed information.

This enhancement makes the interpreter more user-friendly and resilient, delivering clearer feedback to users about the outcomes of their operations and making debugging more straightforward.
2024-05-23 14:52:26 +02:00
src/deuthon feat(interpreter): enhance result representation 2024-05-23 14:52:26 +02:00
tests feat(tests): improve type handling in debug output 2024-05-23 12:45:51 +02:00
.gitignore Initial implementation of Deuthon interpreter 2024-01-14 19:44:16 +01:00
LICENSE Initial implementation of Deuthon interpreter 2024-01-14 19:44:16 +01:00
pyproject.toml Initial implementation of Deuthon interpreter 2024-01-14 19:44:16 +01:00
README.md Initial implementation of Deuthon interpreter 2024-01-14 19:44:16 +01:00