Files
hakorune/local_tests/test_socket_working.nyash
Moe Charm cc8553380c feat: Add multi-box plugin support (v2) with test implementation
- Extend plugin-tester to support multi-box plugins with v2 API
- Add nyash_plugin_get_box_count/get_box_info/get_type_id functions
- Create test multi-box plugin providing TestBoxA and TestBoxB
- Update plugin-system.md documentation for v2 format
- Add nyash.toml v2 specification for multi-box support
- Successfully tested multi-box plugin lifecycle and type resolution

This enables one plugin to provide multiple Box types, solving the
dependency issue where HTTPServerBox needs SocketBox.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-19 01:13:48 +09:00

21 lines
505 B
Plaintext

// SocketBoxの動作テスト
static box Main {
init {
ConsoleBox console,
SocketBox socket
}
main() {
me.console = new ConsoleBox()
me.console.log("🔌 SocketBoxテスト開始...")
// SocketBoxを作成
me.socket = new SocketBox()
me.console.log("✅ SocketBox作成成功")
// 基本情報を表示
me.console.log("SocketBox: " + me.socket.toString())
return "完了"
}
}