9 references to SlotCount
Microsoft.CodeAnalysis (4)
Syntax\SyntaxList`1.cs (2)
80return _node == null ? 0 : (_node.IsList ? _node.SlotCount : 1); 97if (unchecked((uint)index < (uint)_node.SlotCount))
Syntax\SyntaxNodeOrTokenList.cs (2)
92get { return _node == null ? 0 : _node.Green.IsList ? _node.SlotCount : 1; } 114if (unchecked((uint)index < (uint)_node.SlotCount))
Microsoft.CodeAnalysis.CSharp (1)
Parser\Blender.Cursor.cs (1)
133if (node.SlotCount > 0)
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\CompilationExtensions.cs (3)
416if (separatedList.SlotCount > 100) 431int n = separatedList.SlotCount; 443int n = separatedList.SlotCount;
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (1)
Compilation\SemanticModelGetDeclaredSymbolAPITests.vb (1)
1595Assert.Equal(2, Labels.SlotCount)