5 instantiations of Boxed
Microsoft.CodeAnalysis.CSharp (5)
FlowAnalysis\NullableWalker.cs (5)
13072
var container = snapshot.Container is null ? null : new
Boxed
(Create(snapshot.Container));
13099
new
Boxed
(ReachableStateWithNotNulls(variables.Container));
13123
new
Boxed
(CreateReachableOrUnreachableState(variables.Container, reachable));
13131
return new LocalState(variables.Id, container: new
Boxed
(this), CreateBitVector(reachable: true));
13330
var container = _container is null ? null : new
Boxed
(_container.Value.Clone());
6 references to Boxed
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker.cs (6)
13056
private readonly
Boxed
? _container;
13063
private LocalState(int id,
Boxed
? container, BitVector state)
13072
var
container = snapshot.Container is null ? null : new Boxed(Create(snapshot.Container));
13097
var
container = variables.Container is null ?
13121
var
container = variables.Container is null ?
13330
var
container = _container is null ? null : new Boxed(_container.Value.Clone());