示例#1
0
 private static void WriteWhileStatement(BoundWhileStatement node, IndentedTextWriter writer)
 {
     writer.WriteKeyword(SyntaxKind.WhileKeyword);
     writer.WriteWhiteSpace();
     node.Condition.WriteTo(writer);
     writer.WriteLine();
     writer.WriteNestedStatement(node.Body);
 }
示例#2
0
        protected virtual BoundStatement RewriteWhileStatement(BoundWhileStatement node)
        {
            BoundExpression condition = RewriteExpression(node.Condition);
            BoundStatement  body      = RewriteStatement(node.Body);

            if (condition == node.Condition && body == node.Body)
            {
                return(node);
            }

            return(new BoundWhileStatement(condition, body, node.BreakLabel, node.ContinueLabel));
        }