public void AppendOutputs(IncrementalExecutionContext context, CancellationToken cancellationToken) { // get our own state table Debug.Assert(context.TableBuilder is object); var table = context.TableBuilder.GetLatestStateTableForNode(this); // add each non-removed entry to the context foreach (var((sources, diagnostics), state) in table) { if (state != EntryState.Removed) { foreach (var text in sources) { try { context.Sources.Add(text.HintName, text.Text); } catch (ArgumentException e) { throw new UserFunctionException(e); } } context.Diagnostics.AddRange(diagnostics); } } }
public void AppendOutputs(IncrementalExecutionContext context, CancellationToken cancellationToken) { _callback(new IncrementalGeneratorPostInitializationContext(context.Sources, cancellationToken), cancellationToken); }