当前位置: 首页>>代码示例>>C#>>正文


C# DiagnosticAnalyzer.SupportsSyntaxDiagnosticAnalysis方法代码示例

本文整理汇总了C#中DiagnosticAnalyzer.SupportsSyntaxDiagnosticAnalysis方法的典型用法代码示例。如果您正苦于以下问题:C# DiagnosticAnalyzer.SupportsSyntaxDiagnosticAnalysis方法的具体用法?C# DiagnosticAnalyzer.SupportsSyntaxDiagnosticAnalysis怎么用?C# DiagnosticAnalyzer.SupportsSyntaxDiagnosticAnalysis使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DiagnosticAnalyzer的用法示例。


在下文中一共展示了DiagnosticAnalyzer.SupportsSyntaxDiagnosticAnalysis方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: SupportAnalysisKind

        private bool SupportAnalysisKind(DiagnosticAnalyzer analyzer, string language, AnalysisKind kind)
        {
            // compiler diagnostic analyzer always support all kinds
            if (HostAnalyzerManager.IsCompilerDiagnosticAnalyzer(language, analyzer))
            {
                return true;
            }

            switch (kind)
            {
                case AnalysisKind.Syntax:
                    return analyzer.SupportsSyntaxDiagnosticAnalysis();
                case AnalysisKind.Semantic:
                    return analyzer.SupportsSemanticDiagnosticAnalysis();
                default:
                    return Contract.FailWithReturn<bool>("shouldn't reach here");
            }
        }
开发者ID:GuilhermeSa,项目名称:roslyn,代码行数:18,代码来源:DiagnosticIncrementalAnalyzer.cs

示例2: ShouldRunAnalyzerForStateType

        private static bool ShouldRunAnalyzerForStateType(DiagnosticAnalyzer analyzer, StateType stateTypeId,
            ImmutableHashSet<string> diagnosticIds = null, Func<DiagnosticAnalyzer, ImmutableArray<DiagnosticDescriptor>> getDescriptors = null)
        {
            if (diagnosticIds != null && getDescriptors(analyzer).All(d => !diagnosticIds.Contains(d.Id)))
            {
                return false;
            }

            switch (stateTypeId)
            {
                case StateType.Syntax:
                    return analyzer.SupportsSyntaxDiagnosticAnalysis();

                case StateType.Document:
                    return analyzer.SupportsSemanticDiagnosticAnalysis();

                case StateType.Project:
                    return analyzer.SupportsProjectDiagnosticAnalysis();

                default:
                    throw ExceptionUtilities.Unreachable;
            }
        }
开发者ID:nevinclement,项目名称:roslyn,代码行数:23,代码来源:DiagnosticIncrementalAnalyzer.cs

示例3: ShouldRunProviderForStateType

        private static bool ShouldRunProviderForStateType(StateType stateTypeId, DiagnosticAnalyzer provider, DiagnosticAnalyzerDriver driver,
            out bool supportsSemanticInSpan, ImmutableHashSet<string> diagnosticIds = null, Func<DiagnosticAnalyzer, ImmutableArray<DiagnosticDescriptor>> getDescriptor = null)
        {
            Debug.Assert(!IsAnalyzerSuppressed(provider, driver.Project.CompilationOptions, driver));

            supportsSemanticInSpan = false;
            if (diagnosticIds != null && getDescriptor(provider).All(d => !diagnosticIds.Contains(d.Id)))
            {
                return false;
            }

            switch (stateTypeId)
            {
                case StateType.Syntax:
                    return provider.SupportsSyntaxDiagnosticAnalysis(driver);

                case StateType.Document:
                    return provider.SupportsSemanticDiagnosticAnalysis(driver, out supportsSemanticInSpan);

                case StateType.Project:
                    return provider.SupportsProjectDiagnosticAnalysis(driver);

                default:
                    throw ExceptionUtilities.Unreachable;
            }
        }
开发者ID:elemk0vv,项目名称:roslyn-1,代码行数:26,代码来源:DiagnosticIncrementalAnalyzer.cs

示例4: GetSyntaxDiagnosticsAsync

        public async Task<IEnumerable<Diagnostic>> GetSyntaxDiagnosticsAsync(DiagnosticAnalyzer analyzer)
        {
            var compilation = _document.Project.SupportsCompilation ? await _document.Project.GetCompilationAsync(_cancellationToken).ConfigureAwait(false) : null;

            Contract.ThrowIfNull(_document);
            Contract.ThrowIfFalse(analyzer.SupportsSyntaxDiagnosticAnalysis(this));

            using (var pooledObject = SharedPools.Default<List<Diagnostic>>().GetPooledObject())
            {
                var diagnostics = pooledObject.Object;

                _cancellationToken.ThrowIfCancellationRequested();
                var documentAnalyzer = analyzer as DocumentDiagnosticAnalyzer;
                if (documentAnalyzer != null)
                {
                    try
                    {
                        await documentAnalyzer.AnalyzeSyntaxAsync(_document, diagnostics.Add, _cancellationToken).ConfigureAwait(false);
                        return diagnostics.ToImmutableArrayOrEmpty();
                    }
                    catch (Exception e) when(CatchAnalyzerException(e, analyzer))
                    {
                        var exceptionDiagnostics = AnalyzerExceptionToDiagnostics(analyzer, e, _cancellationToken);
                        return GetFilteredDocumentDiagnostics(exceptionDiagnostics, compilation).ToImmutableArray();
                    }
                    }

                    var analyzerActions = await this.GetAnalyzerActionsAsync(analyzer, diagnostics.Add).ConfigureAwait(false);

                    DiagnosticAnalyzerLogger.UpdateAnalyzerTypeCount(analyzer, analyzerActions, (DiagnosticLogAggregator)_logAggregator);

                    if (analyzerActions != null)
                    {
                        if (_document.SupportsSyntaxTree)
                        {
                            AnalyzerDriverHelper.ExecuteSyntaxTreeActions(analyzerActions, _root.SyntaxTree,
                                    _analyzerOptions, diagnostics.Add, CatchAnalyzerException, _cancellationToken);
                        }
                    }

                    if (diagnostics.Count == 0)
                    {
                        return SpecializedCollections.EmptyEnumerable<Diagnostic>();
                    }

                    return GetFilteredDocumentDiagnostics(diagnostics, compilation).ToImmutableArray();
                }
            }
开发者ID:elemk0vv,项目名称:roslyn-1,代码行数:48,代码来源:DiagnosticAnalyzerDriver.cs


注:本文中的DiagnosticAnalyzer.SupportsSyntaxDiagnosticAnalysis方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。