5 instantiations of Boxed
Microsoft.CodeAnalysis.CSharp (5)
FlowAnalysis\NullableWalker.cs (5)
14063
var container = snapshot.Container is null ? null : new
Boxed
(Create(snapshot.Container));
14090
new
Boxed
(ReachableStateWithNotNulls(variables.Container));
14114
new
Boxed
(CreateReachableOrUnreachableState(variables.Container, reachable));
14122
return new LocalState(variables.Id, container: new
Boxed
(this), CreateBitVector(reachable: true));
14321
var container = _container is null ? null : new
Boxed
(_container.Value.Clone());
6 references to Boxed
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker.cs (6)
14047
private readonly
Boxed
? _container;
14054
private LocalState(int id,
Boxed
? container, BitVector state)
14063
var
container = snapshot.Container is null ? null : new Boxed(Create(snapshot.Container));
14088
var
container = variables.Container is null ?
14112
var
container = variables.Container is null ?
14321
var
container = _container is null ? null : new Boxed(_container.Value.Clone());