Ejemplo n.º 1
0
 public PropertyExpressionToken(PropertyToken[] tokens, ChildPropertiesToken last, int startIndex)
 {
     if (last is null)
     {
         throw new ArgumentNullException(nameof(last));
     }
     PropertyChain   = tokens ?? throw new ArgumentNullException(nameof(tokens));
     StartIndex      = startIndex;
     ChildProperties = true;
 }
Ejemplo n.º 2
0
 internal PropertyAccessExpression(ChildPropertiesToken token)
 {
     ChildProperties = true;
 }