Esempio n. 1
0
        public Compiler TypePush(Type type, int popCount = 0)
        {
            for (int i = 0; i < popCount; i++)
            {
                CurrentTypes.Pop();
            }

            if (type != null)
            {
                CurrentTypes.Push(type);
            }

            return(this);
        }
Esempio n. 2
0
 public Compiler TypePop()
 {
     CurrentTypes.Pop();
     return(this);
 }