Replace LINQ ordering with manual sorting for statement entries, replace Attributes form public API with normal data class

This commit is contained in:
Stone_Red
2026-06-10 23:35:20 +02:00
parent 3f595567e3
commit 8875f1ff99
6 changed files with 193 additions and 44 deletions
@@ -7,4 +7,4 @@ namespace YesNt.Interpreter.Runtime;
/// <summary>
/// Pre-calculated statement handler information for faster matching.
/// </summary>
internal record StatementHandler(StatementAttribute Attribute, Action<string> Handler, string FullName);
internal record StatementHandler(StatementAttributeContainer Attribute, Action<string> Handler, string FullName);