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


C# ExpressionStatementSyntax.GetLocation方法代码示例

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


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

示例1: ReportDiagnostics

        private static void ReportDiagnostics(
            SyntaxNodeAnalysisContext syntaxContext,
            StatementSyntax firstStatement,
            IfStatementSyntax ifStatement,
            ExpressionStatementSyntax expressionStatement, 
            DiagnosticSeverity severity, 
            List<Location> additionalLocations, 
            string kind)
        {
            var tree = syntaxContext.Node.SyntaxTree;

            var properties = ImmutableDictionary<string, string>.Empty.Add(
                Constants.Kind, kind);

            var previousToken = expressionStatement.GetFirstToken().GetPreviousToken();
            var nextToken = expressionStatement.GetLastToken().GetNextToken();

            // Fade out the code up to the expression statement.
            syntaxContext.ReportDiagnostic(Diagnostic.Create(s_unnecessaryDescriptor,
                Location.Create(tree, TextSpan.FromBounds(firstStatement.SpanStart, previousToken.Span.End)),
                additionalLocations, properties));

            // Put a diagnostic with the appropriate severity on the expression-statement itself.
            syntaxContext.ReportDiagnostic(Diagnostic.Create(CreateDescriptor(severity),
                expressionStatement.GetLocation(),
                additionalLocations, properties));

            // If the if-statement extends past the expression statement, then fade out the rest.
            if (nextToken.Span.Start < ifStatement.Span.End)
            {
                syntaxContext.ReportDiagnostic(Diagnostic.Create(s_unnecessaryDescriptor,
                    Location.Create(tree, TextSpan.FromBounds(nextToken.Span.Start, ifStatement.Span.End)),
                    additionalLocations, properties));
            }
        }
开发者ID:orthoxerox,项目名称:roslyn,代码行数:35,代码来源:InvokeDelegateWithConditionalAccessAnalyzer.cs

示例2: FindAvailableVariableName

 private static string FindAvailableVariableName(
     string builderNameBase,
     ExpressionStatementSyntax assignmentExpression, 
     SemanticModel semanticModel)
 {
     var builderName = builderNameBase;
     var builderNameIncrementer = 0;
     while (semanticModel
         .LookupSymbols(assignmentExpression.GetLocation()
         .SourceSpan.Start, name: builderName)
         .Any())
         builderName = builderNameBase + ++builderNameIncrementer;
     return builderName;
 }
开发者ID:Winsto,项目名称:MVA-Roslyn,代码行数:14,代码来源:PureMethodsFixer.cs


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