Some cleanup

This commit is contained in:
nub31
2025-10-16 15:48:04 +02:00
parent f7f32b8d23
commit bbbdf42c47
10 changed files with 95 additions and 1510 deletions

View File

@@ -126,7 +126,7 @@ public record StructFieldAccessNode(NubType Type, ExpressionNode Target, string
public record StructInitializerNode(NubStructType StructType, Dictionary<string, ExpressionNode> Initializers) : RValueExpressionNode(StructType);
public record DereferenceNode(NubType Type, ExpressionNode Expression) : LValueExpressionNode(Type);
public record DereferenceNode(NubType Type, ExpressionNode Target) : LValueExpressionNode(Type);
public record ConvertIntNode(NubType Type, ExpressionNode Value, NubIntType ValueType, NubIntType TargetType) : RValueExpressionNode(Type);