Method | Description | |
---|---|---|
AddSyntaxNode ( Microsoft.CodeAnalysis.SyntaxNode node ) : void |
Adds a syntax node as matching node.
|
|
CopyTo ( |
Copies to a given node.
|
|
EnsureNode ( string name ) : |
Lookup a node from children and return it. if the node doesn't exist, a new one will be created and added to the children.
|
|
Match ( string chunks ) : |
Finds a node from syntax chunk.
|
|
ToString ( ) : string |
Overrides ToString to renger the internal Trie to a string.
|
Method | Description | |
---|---|---|
Write ( StringBuilder stringBuilder, string name, int level ) : void |
Writes a node to a string builder and recurse to the children.
|
public AddSyntaxNode ( Microsoft.CodeAnalysis.SyntaxNode node ) : void | ||
node | Microsoft.CodeAnalysis.SyntaxNode | |
return | void |
public CopyTo ( |
||
targetNode | The node wherer to copy. | |
name | string | The node name. |
return | void |
public EnsureNode ( string name ) : |
||
name | string | The node name. |
return |
public Match ( string chunks ) : |
||
chunks | string | The chunks to match. |
return |