From 3a61cd4eb1f0bd577133ac6241234081ae56faff Mon Sep 17 00:00:00 2001 From: codex Date: Wed, 24 Jun 2026 16:03:10 -0500 Subject: [PATCH] Move generated interpreter alias to file scope --- src/Core/InputInterpreter.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Core/InputInterpreter.cs b/src/Core/InputInterpreter.cs index 14b6a4a..448862a 100644 --- a/src/Core/InputInterpreter.cs +++ b/src/Core/InputInterpreter.cs @@ -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; - /// The interpreter that parses user input at runtime into strongly typed .Net values. public class InputInterpreter {