本文整理汇总了C#中StatementSyntax.GetLocation方法的典型用法代码示例。如果您正苦于以下问题:C# StatementSyntax.GetLocation方法的具体用法?C# StatementSyntax.GetLocation怎么用?C# StatementSyntax.GetLocation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StatementSyntax
的用法示例。
在下文中一共展示了StatementSyntax.GetLocation方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: IfDiagnostic
// Checks if the incorrect statement is an if-statement, reports the diagnostic
private void IfDiagnostic(CompilationAnalysisContext context, StatementSyntax statement, DiagnosticDescriptor diagnostic, params string[] messageArgs)
{
if (statement.Kind() == SyntaxKind.IfStatement)
{
var ifStatement = statement as IfStatementSyntax;
var startDiagnosticSpan = ifStatement.SpanStart;
var endDiagnosticSpan = ifStatement.CloseParenToken.SpanStart;
var diagnosticSpan = TextSpan.FromBounds(startDiagnosticSpan, endDiagnosticSpan);
var diagnosticLocation = Location.Create(ifStatement.SyntaxTree, diagnosticSpan);
ReportDiagnostic(context, diagnostic, diagnosticLocation, messageArgs);
}
else
{
ReportDiagnostic(context, diagnostic, statement.GetLocation(), messageArgs);
}
}
示例2: CheckStatement
private static void CheckStatement(SyntaxNodeAnalysisContext c, StatementSyntax statement,
string executed, string execute)
{
if (statement is BlockSyntax)
{
return;
}
var nextStatement = c.Node.GetLastToken().GetNextToken().Parent;
if (nextStatement == null)
{
return;
}
var charPositionWithinLine1 = statement.GetLocation().GetLineSpan().StartLinePosition.Character;
var charPositionWithinLine2 = nextStatement.GetLocation().GetLineSpan().StartLinePosition.Character;
if (charPositionWithinLine1 == charPositionWithinLine2)
{
c.ReportDiagnostic(Diagnostic.Create(Rule, nextStatement.GetLocation(), executed, execute));
}
}
示例3: CheckChildStatement
private static void CheckChildStatement(SyntaxNodeAnalysisContext context, StatementSyntax childStatement)
{
if (childStatement is BlockSyntax)
{
return;
}
if (context.SemanticModel.Compilation.Options.SpecificDiagnosticOptions.GetValueOrDefault(SA1519CurlyBracketsMustNotBeOmittedFromMultiLineChildStatement.DiagnosticId, ReportDiagnostic.Default) != ReportDiagnostic.Suppress)
{
// diagnostics for multi-line statements is handled by SA1519, as long as it's not suppressed
FileLinePositionSpan lineSpan = childStatement.GetLineSpan();
if (lineSpan.StartLinePosition.Line != lineSpan.EndLinePosition.Line)
{
return;
}
}
context.ReportDiagnostic(Diagnostic.Create(Descriptor, childStatement.GetLocation()));
}
示例4: CheckStatement
private static void CheckStatement(SyntaxNodeAnalysisContext context, StatementSyntax statement,
string executed, string execute)
{
if (statement is BlockSyntax)
{
return;
}
var nextStatement = context.Node.GetLastToken().GetNextToken().Parent;
if (nextStatement == null)
{
return;
}
var statementPosition = statement.GetLocation().GetLineSpan().StartLinePosition;
var nextStatementPosition = nextStatement.GetLocation().GetLineSpan().StartLinePosition;
if (statementPosition.Character == nextStatementPosition.Character)
{
var lineSpan = context.Node.SyntaxTree.GetText().Lines[nextStatementPosition.Line].Span;
var location = Location.Create(context.Node.SyntaxTree, TextSpan.FromBounds(nextStatement.SpanStart, lineSpan.End));
context.ReportDiagnostic(Diagnostic.Create(Rule, location, executed, execute,
nextStatementPosition.Line - statementPosition.Line + 1));
}
}
示例5: CheckChildStatement
private static void CheckChildStatement(SyntaxNodeAnalysisContext context, SyntaxNode node, StatementSyntax childStatement)
{
if (childStatement == null || childStatement.IsMissing)
{
return;
}
if (childStatement is BlockSyntax)
{
// BlockSyntax child statements are handled by HandleBlock
return;
}
// We are only interested in the first instance of this violation on a line.
if (!node.GetFirstToken().IsFirstInLine())
{
return;
}
// We are only interested in the case where statement and childStatement start on the same line. Use
// IsFirstInLine to detect this condition easily.
SyntaxToken firstChildToken = childStatement.GetFirstToken();
if (firstChildToken.IsMissingOrDefault() || firstChildToken.IsFirstInLine())
{
return;
}
if (!context.IsAnalyzerSuppressed(SA1519CurlyBracketsMustNotBeOmittedFromMultiLineChildStatement.DiagnosticId))
{
// diagnostics for multi-line statements is handled by SA1519, as long as it's not suppressed
FileLinePositionSpan lineSpan = childStatement.GetLineSpan();
if (lineSpan.StartLinePosition.Line != lineSpan.EndLinePosition.Line)
{
return;
}
}
context.ReportDiagnostic(Diagnostic.Create(Descriptor, childStatement.GetLocation()));
}
示例6: CheckChildStatement
private static void CheckChildStatement(SyntaxNodeAnalysisContext context, StatementSyntax childStatement)
{
if (childStatement is BlockSyntax)
{
return;
}
FileLinePositionSpan lineSpan = childStatement.GetLineSpan();
if (lineSpan.StartLinePosition.Line == lineSpan.EndLinePosition.Line)
{
return;
}
context.ReportDiagnostic(Diagnostic.Create(Descriptor, childStatement.GetLocation()));
}
开发者ID:endjin,项目名称:StyleCopAnalyzers,代码行数:15,代码来源:SA1519CurlyBracketsMustNotBeOmittedFromMultiLineChildStatement.cs