/ src / Spv.Generator / OperandType.cs
OperandType.cs
 1  namespace Spv.Generator
 2  {
 3      public enum OperandType
 4      {
 5          Invalid,
 6          Number,
 7          String,
 8          Instruction,
 9      }
10  }