- Fixed segmentation fault issue (was actually birth() method error) - Added comprehensive debug logging throughout the execution chain - v2 plugin integration fully functional: ✅ Plugin loading and init() successful ✅ Type configuration resolution working (type_id: 6) ✅ FFI communication established ✅ birth() method called with correct parameters ❌ birth() returns error code -4 (needs investigation) Key discoveries: - plugin-tester shows birth() works in isolation - v2 integration architecture is sound - Issue is likely parameter/context mismatch in birth() call Next: Investigate error code -4 meaning and parameter differences 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
170 B
Plaintext
6 lines
170 B
Plaintext
// Minimal FileBox test
|
|
print("Starting minimal test...")
|
|
print("About to create FileBox...")
|
|
local fileBox
|
|
fileBox = new FileBox()
|
|
print("FileBox created successfully!") |