Enable processing of For Loops.

This commit is contained in:
2026-03-19 16:23:20 -04:00
parent 4d7d246431
commit f3c4a1b537
12 changed files with 608 additions and 149 deletions

View File

@@ -0,0 +1,17 @@
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;
}
}