SWFProcessing.SWFModeller.ABC.DoABC.DoABC C# (CSharp) Method

DoABC() public method

Initializes a new instance of a bytecode block.
public DoABC ( bool lazyInit, string name, byte bytecode, StringBuilder abcReadLog ) : System.Diagnostics
lazyInit bool Instruct the VM to use lazy initialization on /// this block.
name string The name of the block
bytecode byte The raw bytecode data.
abcReadLog System.Text.StringBuilder Ignored in release builds. Logs the parsing of the ABC /// file.
return System.Diagnostics
        public DoABC(bool lazyInit, string name, byte[] bytecode, StringBuilder abcReadLog)
        {
            this.IsLazilyInitialized = lazyInit;
            this.Name = name;
            this.bytecode = bytecode;
            #if DEBUG
            this.AbcReadLog = abcReadLog;
            #endif
        }