Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove PROTOTYPE tag #45965

Merged
merged 6 commits into from
Jul 31, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public override AnalyzerConfigOptions GetOptions(AdditionalText textFile)
return new WorkspaceAnalyzerConfigOptions(_projectState._lazyAnalyzerConfigSet.GetValue(CancellationToken.None).GetOptionsForSourcePath(textFile.Path));
}

// PROTOTYPE: why isn't this just a provided implementation?
// TODO: why isn't this just a provided implementation?
kevinsun-dev marked this conversation as resolved.
Show resolved Hide resolved
private sealed class WorkspaceAnalyzerConfigOptions : AnalyzerConfigOptions
{
private readonly ImmutableDictionary<string, string> _backing;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ private async Task<CompilationInfo> FinalizeCompilationAsync(
}

// We will finalize the compilation by adding full contents here.
// PROTOTYPE: allow finalize compilation to incrementally update a prior version
// TODO: allow finalize compilation to incrementally update a prior version
var compilationWithoutGeneratedFiles = compilation;

if (generatorDriver.GeneratorDriver != null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ internal TrackedGeneratorDriver(GeneratorDriver generatorDriver, bool needsFullG
public GeneratorDriver? GeneratorDriver { get; }
public bool NeedsFullGeneration { get; }

/* PROTOTYPE: re-enable when PendingEdit is public again
/* TODO: re-enable when PendingEdit is public again
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 This should use #if false instead of a block comment.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, updated in the PR.


public TrackedGeneratorDriver WithPendingEdit(PendingEdit pendingEdit)
{
Expand Down