5 instantiations of Boxed
Microsoft.CodeAnalysis.CSharp (5)
FlowAnalysis\NullableWalker.cs (5)
12611
var container = snapshot.Container is null ? null : new
Boxed
(Create(snapshot.Container));
12638
new
Boxed
(ReachableStateWithNotNulls(variables.Container));
12662
new
Boxed
(CreateReachableOrUnreachableState(variables.Container, reachable));
12670
return new LocalState(variables.Id, container: new
Boxed
(this), CreateBitVector(reachable: true));
12869
var container = _container is null ? null : new
Boxed
(_container.Value.Clone());
6 references to Boxed
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker.cs (6)
12595
private readonly
Boxed
? _container;
12602
private LocalState(int id,
Boxed
? container, BitVector state)
12611
var
container = snapshot.Container is null ? null : new Boxed(Create(snapshot.Container));
12636
var
container = variables.Container is null ?
12660
var
container = variables.Container is null ?
12869
var
container = _container is null ? null : new Boxed(_container.Value.Clone());