Ejemplo n.º 1
0
        public SetBlock(LFunction function, Branch branch, int target, int line, int begin, int end, bool empty, Registers r)
            : base(function, begin, end)
        {
            m_empty = empty;

            if (begin == end)
            {
                Begin -= 1;
            }

            Target = target;
            Branch = branch;

            m_r = r;
        }