Example #1
0
        private string GetSimpleVariableType(string expression, string operation)
        {
            Variable localVariable = _dataStructure[operation][expression];

            return(localVariable != null ?
                   localVariable.Type :
                   _dataStructure.GetGlobalVariable(expression).Type);
        }