Phase 33 NORM canon test: enforce normalized dev route for P1/P2/JP mini

This commit is contained in:
nyash-codex
2025-12-11 20:54:33 +09:00
parent 59a985b7fa
commit af6f95cd4b
170 changed files with 4423 additions and 1897 deletions

View File

@ -527,8 +527,8 @@ pub enum ASTNode {
/// 値・型は右辺と同じ、副作用として左辺に代入
/// 使用例: local y = (x = x + 1), if (x = next()) != null { }
GroupedAssignmentExpr {
lhs: String, // 変数名
rhs: Box<ASTNode>, // 右辺式
lhs: String, // 変数名
rhs: Box<ASTNode>, // 右辺式
span: Span,
},