Jurassic.Compiler.DynamicILGenerator.EnlargeArray C# (CSharp) Method

EnlargeArray() private method

Enlarges the internal IL buffer.
private EnlargeArray ( int instructionSize ) : void
instructionSize int The size of the instruction that triggered the resize.
return void
        private void EnlargeArray(int instructionSize)
        {
            Array.Resize(ref this.bytes, this.bytes.Length * 2);
        }
DynamicILGenerator