using AspClassic.Scripting.Utils; namespace AspClassic.Scripting.Runtime; public class ScopeExtension { public static readonly ScopeExtension[] EmptyArray = new ScopeExtension[0]; private readonly Scope _scope; public Scope Scope => _scope; public ScopeExtension(Scope scope) { ContractUtils.RequiresNotNull(scope, "scope"); _scope = scope; } }