smokes: add curated LLVM runner; archive legacy smokes; PHI-off unified across Bridge/Builder; LLVM resolver tracing; minimal Throw lowering; config env getters; dev profile and root cleaner; docs updated; CI workflow runs curated LLVM (PHI-on/off)

This commit is contained in:
Selfhosting Dev
2025-09-16 23:49:36 +09:00
parent 97a76c0571
commit 5c9213cd03
104 changed files with 8094 additions and 2930 deletions

View File

@ -1,9 +1,9 @@
#[cfg(test)]
mod array_state_sharing_tests {
use nyash_rust::box_trait::{IntegerBox, NyashBox, StringBox};
use nyash_rust::boxes::array::ArrayBox;
use nyash_rust::interpreter::NyashInterpreter;
use nyash_rust::parser::NyashParser;
use nyash_rust::boxes::array::ArrayBox;
use nyash_rust::box_trait::{NyashBox, IntegerBox, StringBox};
#[test]
fn test_arraybox_state_sharing_bug_fix() {
@ -21,30 +21,30 @@ mod array_state_sharing_tests {
}
}
"#;
let ast = NyashParser::parse_from_string(program).unwrap();
let result = interpreter.execute(ast).unwrap();
let int_result = result.as_any().downcast_ref::<IntegerBox>().unwrap();
assert_eq!(int_result.value, 1); // 🎯 0ではなく1を返すべき
assert_eq!(int_result.value, 1); // 🎯 0ではなく1を返すべき
}
#[test]
fn test_share_box_vs_clone_box_semantics() {
let arr1 = ArrayBox::new();
arr1.push(Box::new(StringBox::new("hello")));
// share_box: 状態共有
let arr2 = arr1.share_box();
let arr2_array = arr2.as_any().downcast_ref::<ArrayBox>().unwrap();
assert_eq!(arr2_array.len(), 1); // 共有されている
assert_eq!(arr2_array.len(), 1); // 共有されている
// clone_box: 独立
let arr3 = arr1.clone_box();
let arr3_array = arr3.as_any().downcast_ref::<ArrayBox>().unwrap();
arr1.push(Box::new(StringBox::new("world")));
assert_eq!(arr3_array.len(), 1); // 影響を受けない
assert_eq!(arr1.len(), 2); // 元は2要素
assert_eq!(arr2_array.len(), 2); // 共有されているので2要素
assert_eq!(arr3_array.len(), 1); // 影響を受けない
assert_eq!(arr1.len(), 2); // 元は2要素
assert_eq!(arr2_array.len(), 2); // 共有されているので2要素
}
#[test]
@ -64,10 +64,10 @@ mod array_state_sharing_tests {
}
}
"#;
let ast = NyashParser::parse_from_string(program).unwrap();
let result = interpreter.execute(ast).unwrap();
let int_result = result.as_any().downcast_ref::<IntegerBox>().unwrap();
assert_eq!(int_result.value, 3); // 3要素が正しく保持されるべき
assert_eq!(int_result.value, 3); // 3要素が正しく保持されるべき
}
}