mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 00:56:31 +02:00
10 lines
293 B
C#
10 lines
293 B
C#
using System;
|
|
|
|
using YesNt.Interpreter.Attributes;
|
|
|
|
namespace YesNt.Interpreter.Runtime;
|
|
|
|
/// <summary>
|
|
/// Pre-calculated statement handler information for faster matching.
|
|
/// </summary>
|
|
internal record StatementHandler(StatementAttribute Attribute, Action<string> Handler, string FullName); |