mirror of
https://github.com/Colton1skees/Dna
synced 2026-06-21 13:42:09 +00:00
18 lines
397 B
C#
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; }
|
|
}
|
|
}
|