System.Linq.Dynamic.ExpressionParser.ParseMemberAccess C# (CSharp) Method

ParseMemberAccess() private method

private ParseMemberAccess ( Type type, Expression instance ) : Expression
type Type
instance Expression
return Expression
		private Expression ParseMemberAccess(Type type, Expression instance)
		{
			if (instance != null)
				type = instance.Type;

			int errorPos = _token.Position;
			string id = GetIdentifier();
			NextToken();
			var nextToken = _token.ID;
			return TryParseMemberAccess(type, instance, nextToken, errorPos, id).Value;
		}
ExpressionParser