Initial investigation: Identified core Box registration issues

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-12 08:12:26 +00:00
parent a2c8f84de5
commit dadb5afcff
7 changed files with 94 additions and 16 deletions

View File

@ -7,7 +7,7 @@ use crate::interpreter::core::NyashInterpreter;
use crate::interpreter::core::RuntimeError;
use crate::ast::ASTNode;
use crate::box_trait::{NyashBox, StringBox, BoolBox};
use crate::boxes::{IntentBox, P2PBox};
use crate::boxes::{IntentBox};
use crate::method_box::MethodBox;
impl NyashInterpreter {
@ -45,7 +45,8 @@ impl NyashInterpreter {
}
}
/// P2PBoxのメソッド実行 (Arc<Mutex>版)
// P2PBoxのメソッド実行 (Arc<Mutex>版) - Temporarily disabled
/*
pub(in crate::interpreter) fn execute_p2p_box_method(
&mut self,
p2p_box: &P2PBox,
@ -114,4 +115,5 @@ impl NyashInterpreter {
})
}
}
*/
}