Table of Contents

Class IrAssignment

Namespace
Xui.GPU.IR
Assembly
Xui.Core.dll

Represents an assignment statement.

public class IrAssignment : IrStatement
Inheritance
IrAssignment
Inherited Members

Constructors

IrAssignment(IrExpression, IrExpression)

Initializes a new instance of IrAssignment with the specified target and value.

public IrAssignment(IrExpression target, IrExpression value)

Parameters

target IrExpression
value IrExpression

Properties

Kind

Gets the IR node kind for this statement.

public override IrNodeKind Kind { get; }

Property Value

IrNodeKind

Target

Gets the assignment target expression.

public IrExpression Target { get; }

Property Value

IrExpression

Value

Gets the value expression to assign.

public IrExpression Value { get; }

Property Value

IrExpression