AjRools.Expert.Compiler.Parser.ParseEndOfLine C# (CSharp) 메소드

ParseEndOfLine() 개인적인 메소드

private ParseEndOfLine ( ) : void
리턴 void
        private void ParseEndOfLine()
        {
            Token token = this.NextToken();

            if (token == null)
                return;

            if (token.Type != TokenType.EndOfLine)
                throw new LexerException("Expected End of Line/Input");
        }