3 types derived from SyntaxList
Microsoft.CodeAnalysis.Razor.Compiler (3)
Language\Syntax\SyntaxList.cs (3)
80
internal sealed class WithTwoChildren :
SyntaxList
107
internal sealed class WithThreeChildren :
SyntaxList
137
internal sealed class WithManyChildren :
SyntaxList
9 references to SyntaxList
Microsoft.CodeAnalysis.Razor.Compiler (9)
Language\Syntax\InternalSyntax\SyntaxList.cs (3)
218
return new Syntax.
SyntaxList
.WithTwoChildren(this, parent, position);
280
return new Syntax.
SyntaxList
.WithThreeChildren(this, parent, position);
341
return new Syntax.
SyntaxList
.WithManyChildren(this, parent, position);
Language\Syntax\SyntaxFactory.cs (4)
47
=>
SyntaxList
.Create(nodes);
51
=>
SyntaxList
.Create(nodes);
60
=>
SyntaxList
.Create(tokens);
63
=>
SyntaxList
.Create(tokens);
Language\Syntax\SyntaxList`1.cs (1)
14
[CollectionBuilder(typeof(
SyntaxList
), methodName: "Create")]
Language\Syntax\SyntaxTokenList.cs (1)
19
[CollectionBuilder(typeof(
SyntaxList
), methodName: "Create")]