Files
ARM64/Axiom/Axiom.Core/Interpreter/CapturedCode.cs
Sean ec5a59201b
Some checks failed
Build .NET Project / build (push) Has been cancelled
Add capability for For Loop processing
2026-03-18 21:58:03 -04:00

18 lines
371 B
C#

using System;
namespace Axiom.Interpreter
{
public class CapturedCode
{
private readonly byte[] codeBytes;
public CapturedCode(byte[] codeBytes)
{
this.codeBytes = codeBytes ?? throw new ArgumentNullException(nameof(codeBytes));
}
public int Length => codeBytes.Length;
public byte[] Bytes => (byte[])codeBytes;
}
}