© 2026 Hedgehog Software, LLC
public List<T> GetStatementsOfType<T>() where T : ASTStatement { return statements.OfType<T>().ToList(); }
foreach(ASTVariableDeclaration dec in astScope.GetStatementsOfType<ASTVariableDeclaration>()) { _globalVariables.Add(dec.name.value, null); }