7 references to _tableBuilder
Microsoft.CodeAnalysis (7)
SourceGeneration\Nodes\StateTableStore.cs (7)
45
public bool Contains(object key) =>
_tableBuilder
.ContainsKey(key);
47
public bool TryGetTable(object key, [NotNullWhen(true)] out IStateTable? table) =>
_tableBuilder
.TryGetValue(key, out table);
49
public void SetTable(object key, IStateTable table) =>
_tableBuilder
[key] = table;
54
var keys =
_tableBuilder
.Keys.ToArray();
57
_tableBuilder
[key] =
_tableBuilder
[key].AsCached();
60
return new StateTableStore(
_tableBuilder
.ToImmutable());