8 references to IsList
Microsoft.CodeAnalysis (8)
Syntax\SeparatedSyntaxList.cs (2)
118
if (!node.
IsList
)
148
Debug.Assert(node.
IsList
, "separated list cannot be a singleton separator");
Syntax\SyntaxList`1.cs (3)
112
return _node == null ? 0 : (_node.
IsList
? _node.SlotCount : 1);
127
if (_node.
IsList
)
145
if (_node?.
IsList
== true)
Syntax\SyntaxNode.cs (2)
213
Debug.Assert(this.
IsList
);
233
Debug.Assert(this.
IsList
);
Syntax\SyntaxNodeOrTokenList.cs (1)
138
if (!_node.
IsList
)