Esempio n. 1
0
 EvalResult(string expression, string typeName, string repr, long?length, PythonEvaluationResultFlags?flags, bool allowOtherFlags)
 {
     Expression       = expression;
     _typeName        = typeName;
     _repr            = repr;
     _length          = length;
     _flags           = flags;
     _allowOtherFlags = allowOtherFlags;
 }
Esempio n. 2
0
 public static EvalResult Value(string expression, string typeName, string repr, long?length = null, PythonEvaluationResultFlags?flags = null, bool allowOtherFlags = false)
 {
     return(new EvalResult(expression, typeName, repr, length, flags, allowOtherFlags));
 }