1 instantiation of BlendedNode
Microsoft.CodeAnalysis.CSharp (1)
Parser\Blender.Reader.cs (1)
318
return new
BlendedNode
(node, token,
22 references to BlendedNode
Microsoft.CodeAnalysis.CSharp (20)
Parser\Blender.cs (3)
179
public
BlendedNode
ReadNode(LexerMode mode)
184
public
BlendedNode
ReadToken(LexerMode mode)
189
private
BlendedNode
ReadNodeOrToken(LexerMode mode, bool asToken)
Parser\Blender.Reader.cs (6)
41
internal
BlendedNode
ReadNodeOrToken(LexerMode mode, bool asToken)
87
BlendedNode
blendedNode;
141
private
BlendedNode
ReadNewToken(LexerMode mode)
186
out
BlendedNode
blendedNode)
200
blendedNode = default(
BlendedNode
);
316
private
BlendedNode
CreateBlendedNode(CSharp.CSharpSyntaxNode node, SyntaxToken token)
Parser\SyntaxParser.cs (11)
29
private
BlendedNode
_currentNode;
39
private static readonly ObjectPool<
BlendedNode
[]> s_blendedNodesPool = new ObjectPool<
BlendedNode
[]>(() => new
BlendedNode
[32], 2);
41
private
BlendedNode
[] _blendedTokens;
56
_currentNode = default(
BlendedNode
);
171
_currentNode = default(
BlendedNode
);
227
_currentNode = default(
BlendedNode
);
293
_currentNode = default(
BlendedNode
);
351
private void AddToken(in
BlendedNode
tokenResult)
472
_currentNode = default(
BlendedNode
);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
LexicalAndXml\LexicalTests.cs (2)
83
private IEnumerable<InternalSyntax.
BlendedNode
> Blend(string text)
88
InternalSyntax.
BlendedNode
result;