Exemplo n.º 1
0
 private VariableData ResultData(object result)
 {
     return(ResultIsVoid
         ? new VariableData()
         : ctx.CreateValueData(result, ResultIsList, ResultType, true));
 }
Exemplo n.º 2
0
 internal VariableData CreateData(object target, int currentDepth, bool eager) => ctx.CreateValueData(property.FetchFrom(target), IsList, DataType, currentDepth, eager);