Exemple #1
0
 public void VisitIdentifier(string identifier, string appName, bool isRaw, bool isNoLog)
 {
     m_symbolTable.GetId(identifier, appName,
                         id =>
     {
         var value = m_context.GetValue(id, isRaw, isNoLog);
         m_stack.Push(value);
     },
                         () => m_stack.Push(double.NaN));
 }