8 references to IsList
Microsoft.CodeAnalysis (8)
Syntax\SeparatedSyntaxList.cs (2)
89
if (!node.
IsList
)
119
Debug.Assert(node.
IsList
, "separated list cannot be a singleton separator");
Syntax\SyntaxList`1.cs (3)
80
return _node == null ? 0 : (_node.
IsList
? _node.SlotCount : 1);
95
if (_node.
IsList
)
113
if (_node?.
IsList
== true)
Syntax\SyntaxNode.cs (2)
212
Debug.Assert(this.
IsList
);
232
Debug.Assert(this.
IsList
);
Syntax\SyntaxNodeOrTokenList.cs (1)
105
if (!_node.
IsList
)