1 implementation of SupportsTupleDeconstruction
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
67
public bool
SupportsTupleDeconstruction
(ParseOptions options)
2 references to SupportsTupleDeconstruction
Microsoft.CodeAnalysis.Features (2)
ExtractMethod\MethodExtractor.Analyzer.cs (1)
323
this.SyntaxFacts.
SupportsTupleDeconstruction
(this.SemanticDocument.Document.Project.ParseOptions!);
IntroduceVariable\AbstractIntroduceLocalForExpressionCodeRefactoringProvider.cs (1)
51
if (type.IsTupleType && syntaxFacts.
SupportsTupleDeconstruction
(expression.SyntaxTree.Options))