示例#1
0
        public override void Compile(ByteCode bc)
        {
            bc.Emit_Clean(_stackFrame);

            this.Address = bc.GetJumpPointForLastInstruction();

            foreach (var gotostat in _gotos)
            {
                gotostat.SetAddress(this.Address);
            }
        }