public bool CanExecuteCode(string text)
 {
     if (_commands.InCommand)
     {
         return(true);
     }
     if (_activeEvaluator != null)
     {
         return(_activeEvaluator.CanExecuteCode(text));
     }
     return(true);
 }
        public bool CanExecuteText(string text)
        {
#endif
            if (_activeEvaluator != null)
            {
#if DEV14_OR_LATER
                return(_activeEvaluator.CanExecuteCode(text));
#else
                return(_activeEvaluator.CanExecuteText(text));
#endif
            }
            return(true);
        }
 public bool CanExecuteCode(string text)
 {
     if (_commands.InCommand)
     {
         return(true);
     }
     if (_activeEvaluator != null)
     {
         return(_activeEvaluator.CanExecuteCode(text));
     }
     else if (CustomDebugAdapterProtocolExtension.CanUseExperimental())
     {
         return(CanExecuteCodeExperimental(text));
     }
     return(true);
 }