private void AddParameterValue(ISymbol symbolValue)
 {
     object setValue = symbolValue;
     if (symbolValue.GetType().Equals(typeof(Identifier)))
         setValue = ContextProvider.GetContext().GetValueOf(symbolValue.Value().ToString());
     ContextProvider.GetContext().AddParameterValue(setValue);
 }