本文整理汇总了C#中WhileStatementSyntax.WithStatement方法的典型用法代码示例。如果您正苦于以下问题:C# WhileStatementSyntax.WithStatement方法的具体用法?C# WhileStatementSyntax.WithStatement怎么用?C# WhileStatementSyntax.WithStatement使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WhileStatementSyntax
的用法示例。
在下文中一共展示了WhileStatementSyntax.WithStatement方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddBraces
public static WhileStatementSyntax AddBraces(WhileStatementSyntax whileStatement)
{
Debug.Assert(whileStatement != null && NeedsBraces(whileStatement));
return whileStatement
.WithStatement(SyntaxFactory.Block(whileStatement.Statement))
.WithAdditionalAnnotations(Formatter.Annotation);
}
示例2: VisitWhileStatement
public override SyntaxNode VisitWhileStatement(WhileStatementSyntax node)
{
this.loopLevel++;
var statement = base.VisitWhileStatement (node
.WithStatement (GetLoopBlock (node.Statement)))
.WithAdditionalAnnotations (this.isLoop);
this.loopLevel--;
return statement;
}
示例3: VisitWhileStatement
public override SyntaxNode VisitWhileStatement(WhileStatementSyntax node)
{
node = (WhileStatementSyntax)base.VisitWhileStatement(node);
if (!node.Statement.IsKind(SyntaxKind.Block))
{
this.addedAnnotations = true;
node = node.WithStatement(SyntaxFactory.Block(node.Statement));
}
return node;
}
示例4: VisitWhileStatement
public override void VisitWhileStatement(WhileStatementSyntax node)
{
if (!YieldChecker.HasSpecialStatement(node))
{
currentState.Add(StateMachineThisFixer.Fix(node));
}
else
{
MaybeCreateNewState();
var nextState = GetNextState(node);
var iterationState = currentState;
iterationState.NextState = nextState;
iterationState.BreakState = nextState;
node = node.WithStatement(SyntaxFactory.Block(CaptureState(node.Statement, iterationState, nextState)));
iterationState.Statements.Add(node);
Close(iterationState);
currentState = nextState;
}
}