Phase 1 complete: Unified import system implemented and tested

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-11 20:32:25 +00:00
parent 0abdd9dbcf
commit 738a026466
12 changed files with 13 additions and 19 deletions

View File

@ -11,7 +11,7 @@
use super::super::*;
use crate::box_trait::{StringBox, IntegerBox, BoolBox, VoidBox};
use crate::boxes::math_box::FloatBox;
use crate::boxes::FloatBox;
impl NyashInterpreter {
/// StringBoxのメソッド呼び出しを実行

View File

@ -9,8 +9,7 @@
use super::super::*;
use crate::box_trait::{StringBox, IntegerBox, NyashBox, BoolBox};
use crate::boxes::array::ArrayBox;
use crate::boxes::map_box::MapBox;
use crate::boxes::{ArrayBox, MapBox};
impl NyashInterpreter {
/// ArrayBoxのメソッド呼び出しを実行

View File

@ -9,7 +9,7 @@
use super::super::*;
use crate::box_trait::{ResultBox, StringBox, NyashBox};
use crate::boxes::file::FileBox;
use crate::boxes::FileBox;
impl NyashInterpreter {
/// FileBoxのメソッド呼び出しを実行