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

LoadArrayLength() public method

Pops an array off the stack and pushes the length of the array onto the stack.
public LoadArrayLength ( ) : void
return void
        public override void LoadArrayLength()
        {
            Emit1ByteOpCode(0x8E, 1, 1);
            PopStackOperands(VESType.Object);
            PushStackOperand(VESType.NativeInt);
        }
DynamicILGenerator