AjErl.Compiler.Lexer.NextSimpleChar C# (CSharp) Method

NextSimpleChar() private method

private NextSimpleChar ( ) : int
return int
        private int NextSimpleChar()
        {
            if (this.chars.Count > 0)
                return this.chars.Pop();

            return this.reader.Read();
        }