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); }
public Compiler TypePop() { CurrentTypes.Pop(); return(this); }