1 instantiation of TransformFunction
Microsoft.Build (1)
Evaluation\Expander.cs (1)
2165transformFunctionStack.Push(new TransformFunction<S>(elementLocation, functionName, transformFunction, arguments));
6 references to TransformFunction
Microsoft.Build (6)
Evaluation\Expander.cs (6)
1784internal static IEnumerable<KeyValuePair<string, S>> Transform<S>(Expander<P, I> expander, bool includeNullEntries, Stack<TransformFunction<S>> transformFunctionStack, IEnumerable<KeyValuePair<string, S>> itemsOfType) 1791TransformFunction<S> function = transformFunctionStack.Pop(); 2049Stack<TransformFunction<S>> transformFunctionStack = PrepareTransformStackFromMatch<S>(elementLocation, expressionCapture); 2132private static Stack<TransformFunction<S>> PrepareTransformStackFromMatch<S>(IElementLocation elementLocation, ExpressionShredder.ItemExpressionCapture match) 2138Stack<TransformFunction<S>> transformFunctionStack = new Stack<TransformFunction<S>>(match.Captures.Count);