selfhost: introduce using-based imports for compiler/parser/tools; keep includes temporarily. llvm: add PHI wiring JSON trace + unit/integration tests; fast test suite extended. runner: split selfhost helpers, small cleanups.

This commit is contained in:
Selfhosting Dev
2025-09-18 13:35:38 +09:00
parent 3fe908eb0d
commit 951a050592
49 changed files with 644 additions and 287 deletions

View File

@ -4,6 +4,7 @@ use crate::parser::{NyashParser, ParseError};
use crate::tokenizer::TokenType;
#[inline]
#[allow(dead_code)]
fn is_sugar_enabled() -> bool {
crate::parser::sugar_gate::is_enabled()
}