- Keep essential information within 500 lines (now 395 lines) - Maintain important syntax examples and development principles - Move detailed information to appropriate docs files: - Development practices → docs/guides/development-practices.md - Testing guide → docs/guides/testing-guide.md - Claude issues → docs/tools/claude-issues.md - Add proper links to all referenced documentation - Balance between minimal entry point and practical usability
9 lines
341 B
Rust
9 lines
341 B
Rust
use nyash_rust::mir::instruction_introspection;
|
|
|
|
// Core-15: enforce fixed instruction count at 15 (migration mode; docs may differ)
|
|
#[test]
|
|
fn mir_core15_instruction_count() {
|
|
let impl_names = instruction_introspection::core15_instruction_names();
|
|
assert_eq!(impl_names.len(), 15, "Core-15 must contain exactly 15 instructions");
|
|
}
|