1 // Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. 2 3 using System.Collections.Generic; 4 5 namespace System.Web.Mvc.ExpressionUtil 6 { Hoisted(TModel model, List<object> capturedConstants)7 internal delegate TValue Hoisted<TModel, TValue>(TModel model, List<object> capturedConstants); 8 } 9