VBF.Compilers.Scanners.Lexeme.CreateEmptyLexeme C# (CSharp) Method

CreateEmptyLexeme() public static method

public static CreateEmptyLexeme ( ) : Lexeme
return Lexeme
        public static Lexeme CreateEmptyLexeme()
        {
            return new Lexeme(null, 0,
                new SourceSpan(new SourceLocation(), new SourceLocation()),
                null);
        }