From ead706e38b1cf6deefe78a57ab720a995e531acf Mon Sep 17 00:00:00 2001 From: Jordan Wages Date: Tue, 26 Aug 2025 02:28:22 -0500 Subject: [PATCH] Update InputInterpreter.cs --- src/Core/InputInterpreter.cs | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/src/Core/InputInterpreter.cs b/src/Core/InputInterpreter.cs index c9c31c1..f743ac4 100644 --- a/src/Core/InputInterpreter.cs +++ b/src/Core/InputInterpreter.cs @@ -45,11 +45,37 @@ namespace CSMic #region Properties - public decimal NumericValue => numericValue; - public string StringValue => stringValue; + public decimal NumericValue + { + get + { + return this.numericValue; + } + } - public TimeSpan LastExecutionTime => lastExecutionTime; + public string StringValue + { + get + { + return this.stringValue; + } + } + public TimeSpan LastExecutionTime + { + get + { + return this.lastExecutionTime; + } + } + + public IEnumerable Variables + { + get + { + return null; + } + } #endregion #region Output Plumbing