Gibbed.RED.ScriptDecompiler.BasicBlockStatement.WriteBody C# (CSharp) Méthode

WriteBody() protected méthode

protected WriteBody ( TextWriter output, string indent ) : void
output System.IO.TextWriter
indent string
Résultat void
        protected virtual void WriteBody(TextWriter output, string indent)
        {
            foreach (var statement in _statements)
            {
                if (ControlFlowDone && statement is ExpressionStatement)
                    ((ExpressionStatement) statement).IsTarget = false;
                statement.Write(output, indent);
            }
        }