- Implement C ABI plugin system with workspace configuration - Create FileBox plugin with full read/write/exists/toString support - Fix critical memory management issues (double free) with Arc - Add comprehensive test suite for dynamic FileBox functionality - Achieve 98% build time improvement for plugin (2.87s vs 2-3min) - Maintain full backward compatibility with feature flags FileBox now loads dynamically, drastically reducing build times while maintaining all functionality. Next: Math/Time dynamic migration. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
229 B
Plaintext
7 lines
229 B
Plaintext
// 静的FileBoxテスト(比較用)
|
||
local file = new FileBox("static_test.txt")
|
||
print("Static FileBox created!")
|
||
|
||
// 静的FileBoxでtoString()を試す
|
||
local result = file.toString()
|
||
print("toString() called successfully!") |