revert: 古いプラグインシステム実装前の状態に巻き戻し
- ソースコードをcommit 3f7d71fの状態に復元(古いプラグインシステム実装前) - docsフォルダは最新の状態を維持(BID-FFI設計ドキュメント含む) - nyashバイナリの基本動作確認済み - BID-FFIシステムをクリーンに再実装する準備完了 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@ -8,13 +8,10 @@
|
||||
mod codegen;
|
||||
mod memory;
|
||||
mod runtime;
|
||||
mod host;
|
||||
mod executor;
|
||||
|
||||
pub use codegen::{WasmCodegen, WasmModule};
|
||||
pub use memory::{MemoryManager, BoxLayout};
|
||||
pub use runtime::RuntimeImports;
|
||||
pub use executor::WasmExecutor;
|
||||
|
||||
use crate::mir::MirModule;
|
||||
|
||||
@ -26,8 +23,6 @@ pub enum WasmError {
|
||||
UnsupportedInstruction(String),
|
||||
WasmValidationError(String),
|
||||
IOError(String),
|
||||
RuntimeError(String),
|
||||
CompilationError(String),
|
||||
}
|
||||
|
||||
impl std::fmt::Display for WasmError {
|
||||
@ -38,8 +33,6 @@ impl std::fmt::Display for WasmError {
|
||||
WasmError::UnsupportedInstruction(msg) => write!(f, "Unsupported instruction: {}", msg),
|
||||
WasmError::WasmValidationError(msg) => write!(f, "WASM validation error: {}", msg),
|
||||
WasmError::IOError(msg) => write!(f, "IO error: {}", msg),
|
||||
WasmError::RuntimeError(msg) => write!(f, "Runtime error: {}", msg),
|
||||
WasmError::CompilationError(msg) => write!(f, "Compilation error: {}", msg),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user