Exemplo n.º 1
0
 internal static EqualsValueClauseSyntax EqualsValueClause(this SyntaxTree tree, string code)
 {
     return(tree.BestMatch <EqualsValueClauseSyntax>(code));
 }
Exemplo n.º 2
0
 internal static StatementSyntax Statement(this SyntaxTree tree, string code)
 {
     return(tree.BestMatch <StatementSyntax>(code));
 }
Exemplo n.º 3
0
 internal static PropertyDeclarationSyntax PropertyDeclarationSyntax(this SyntaxTree tree, string code)
 {
     return(tree.BestMatch <PropertyDeclarationSyntax>(code));
 }
Exemplo n.º 4
0
 internal static AssignmentExpressionSyntax AssignmentExpression(this SyntaxTree tree, string code)
 {
     return(tree.BestMatch <AssignmentExpressionSyntax>(code));
 }