aboutsummaryrefslogtreecommitdiff
path: root/unit_tests/misc_tests.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* verbose_errors improvementBenoit Germain2025-10-271-0/+9
| | | | | * Use std::format instead of sprintf for verbose errors when decoding table keys * Add a unit test for the different table key types
* Improve table and userdata conversionsBenoit Germain2025-09-201-0/+193
* add convert_fallback and convert_max_attempts to global settings * if no __lanesconvert is available, use convert_fallback (can be useful for externally provided full userdata with fixed metatables) * only try conversion on non-deep and non-clonable userdata * conversion can be applied recursively, up to convert_max_attempts times * plus all the relevant unit tests of course