aboutsummaryrefslogtreecommitdiff
path: root/Spv.Generator/OperandType.cs
blob: 06e8e1fb32afb1c47ae2430a59d5e5cf4b7964b6 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Spv.Generator
{
    public enum OperandType
    {
        Invalid,
        Number,
        String,
        Instruction,
    }
}