in src/WorkerIndexingHelper.cs [214:224]
private static void GetOutputBindingInfo(ReadOnlyCollection<AttributeAst> attributes)
{
foreach (AttributeAst attribute in attributes)
{
BindingInformation? bindingInformation = BindingExtractor.ExtractOutputBinding(attribute);
if (bindingInformation is not null)
{
AddOutputBinding(bindingInformation);
}
}
}