コード例 #1
0
ファイル: BoundNodePrinter.cs プロジェクト: GBS-Joel/minsk
 private static void WriteWhileStatement(BoundWhileStatement node, IndentedTextWriter writer)
 {
     writer.WriteKeyword("while ");
     node.Condition.WriteTo(writer);
     writer.WriteLine();
     writer.WriteNestedStatement(node.Body);
 }
コード例 #2
0
ファイル: BoundTreeRewriter.cs プロジェクト: stefan991/minsk
        protected virtual BoundStatement RewriteWhileStatement(BoundWhileStatement node)
        {
            var condition = RewriteExpression(node.Condition);
            var body = RewriteStatement(node.Body);
            if (condition == node.Condition && body == node.Body)
                return node;

            return new BoundWhileStatement(condition, body, node.BreakLabel, node.ContinueLabel);
        }
コード例 #3
0
ファイル: BoundTreeRewriter.cs プロジェクト: warappa/minsk
        protected virtual BoundStatement RewriteWhileStatement(BoundWhileStatement node)
        {
            var condition = RewriteExpression(node.Condition);
            var body      = RewriteStatement(node.Body);

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

            return(new BoundWhileStatement(condition, body));
        }