ICSharpCode.NRefactory.MonoCSharp.Nullable.UnwrapCall.DoResolve C# (CSharp) Method

DoResolve() protected method

protected DoResolve ( ResolveContext rc ) : Expression
rc ResolveContext
return System.Linq.Expressions.Expression
		protected override Expression DoResolve (ResolveContext rc)
		{
			base.DoResolve (rc);

			if (type != null)
				type = NullableInfo.GetUnderlyingType (type);

			return this;
		}