8 references to SlotCount
Microsoft.CodeAnalysis (4)
Syntax\SyntaxList`1.cs (2)
113return _node == null ? 0 : (_node.IsList ? _node.SlotCount : 1); 130if (unchecked((uint)index < (uint)_node.SlotCount))
Syntax\SyntaxNodeOrTokenList.cs (2)
126get { return _node == null ? 0 : _node.Green.IsList ? _node.SlotCount : 1; } 148if (unchecked((uint)index < (uint)_node.SlotCount))
Microsoft.CodeAnalysis.CSharp (1)
Parser\Blender.Cursor.cs (1)
153if (node.SlotCount > 0)
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\CompilationExtensions.cs (3)
425if (separatedList.SlotCount > 100) 440int n = separatedList.SlotCount; 452int n = separatedList.SlotCount;