internal static EqualsValueClauseSyntax EqualsValueClause(this SyntaxTree tree, string code) { return(tree.BestMatch <EqualsValueClauseSyntax>(code)); }
internal static StatementSyntax Statement(this SyntaxTree tree, string code) { return(tree.BestMatch <StatementSyntax>(code)); }
internal static PropertyDeclarationSyntax PropertyDeclarationSyntax(this SyntaxTree tree, string code) { return(tree.BestMatch <PropertyDeclarationSyntax>(code)); }
internal static AssignmentExpressionSyntax AssignmentExpression(this SyntaxTree tree, string code) { return(tree.BestMatch <AssignmentExpressionSyntax>(code)); }