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