Move generated interpreter alias to file scope
Some checks failed
Build / build (push) Failing after 45s
Tests / tests (push) Failing after 31s

This commit is contained in:
codex 2026-06-24 16:03:10 -05:00
commit 3a61cd4eb1

View file

@ -1,11 +1,10 @@
using System.Runtime.CompilerServices;
using System.Text;
using System.IO;
using GeneratedInterpreter = global::CSMic.Interpreter;
namespace CSMic
{
using GeneratedInterpreter = global::CSMic.Interpreter;
/// <summary> The interpreter that parses user input at runtime into strongly typed .Net values. </summary>
public class InputInterpreter
{