mirror of
https://github.com/Colton1skees/Dna
synced 2026-06-21 13:42:09 +00:00
19 lines
422 B
C#
19 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TritonTranslator.Intermediate.Operands;
|
|
|
|
namespace Dna.Structuring.Stackify.Structured
|
|
{
|
|
public class Select : WasmBlock
|
|
{
|
|
public IOperand Selector { get; set; }
|
|
|
|
public List<WasmLabel> Targets { get; set; } = new();
|
|
|
|
public WasmLabel Default { get; set; }
|
|
}
|
|
}
|