6 references to ChildCount
Microsoft.CodeAnalysis.Workspaces (6)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EmbeddedLanguages\Common\EmbeddedSyntaxNode.cs (6)
54
public EmbeddedSyntaxNodeOrToken<TSyntaxKind, TSyntaxNode> this[Index index] => this[index.GetOffset(this.
ChildCount
)];
80
for (int i = 0, n =
ChildCount
; i < n; i++)
93
for (var i =
ChildCount
- 1; i >= 0; i--)
179
for (var i = 0; i < this.
ChildCount
; i++)
183
var curentTrailing = trailing || i < (this.
ChildCount
- 1);
208
_childCount = _node.
ChildCount
;