Files
2023-02-19 21:03:07 -06:00

18 lines
397 B
C#

using Dna.ControlFlow;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TritonTranslator.Intermediate;
namespace Dna.Structuring.Stackify.Structured
{
public class Loop : WasmBlock
{
public List<WasmBlock> Body { get; set; } = new();
public BasicBlock<AbstractInst> Header { get; set; }
}
}