using System; using YesNt.Interpreter.Attributes; namespace YesNt.Interpreter.Runtime; /// /// Pre-calculated statement handler information for faster matching. /// internal record StatementHandler(StatementAttribute Attribute, Action Handler, string FullName);