|
using Qrakhen.Qamp.Core.Collections;
|
|
|
|
namespace Qrakhen.Qamp.Core.Compilation.Builders;
|
|
|
|
public class Builder
|
|
{
|
|
public Builder? Outer;
|
|
public FunctionBuilder Function = new();
|
|
|
|
public StackLike<Local> Locals = [];
|
|
public StackLike<Outer> Outers = [];
|
|
public int ScopeDepth = 0;
|
|
} |