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